/* GENEL DEĞİŞKENLER VE STİLLER */
:root {
  --primary-color: #007BFF;
  --secondary-color: #00B894;
  --dark-color: #333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --white: #fff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.brand-name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.menu {
  display: flex;
}

.menu a {
  text-decoration: none;
  color: var(--dark-color);
  margin-left: 25px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.menu a:hover, .menu a.active {
  color: var(--primary-color);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.menu a:hover::after, .menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* HERO BANNER */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 123, 255, 0.7), rgba(0, 184, 148, 0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.cta-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  animation: fadeIn 1.5s ease;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.cta-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cta-btn i {
  margin-left: 8px;
  transition: var(--transition);
}

.cta-btn:hover i {
  transform: translateX(5px);
}

/* BÖLÜM BAŞLIKLARI */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* HAKKIMIZDA */
.about {
  padding: 80px 0;
  background-color: var(--light-color);
}

.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: var(--gray-color);
}

.about-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray-color);
}

/* HİZMETLER */
.services {
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-box {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  z-index: -1;
}

.service-box:hover::before {
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
  color: var(--white);
}

.service-box:hover h3,
.service-box:hover p {
  color: var(--white);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.service-box:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-box:hover .service-icon i {
  color: var(--white);
}

.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  transition: var(--transition);
}

.service-box p {
  color: var(--gray-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-box:hover .service-link {
  color: var(--white);
}

.service-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* İLETİŞİM ÇAĞRISI */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta .cta-btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.contact-cta .cta-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
}

/* FOOTER */
.footer {
  background-color: #F5FFFA;
  color: var(--dark-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info p {
  margin: 15px 0;
  color: #000000;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo .logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-logo .brand-name {
  font-size: 1rem;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(19, 31, 196, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul, .footer-contact ul {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  color: var(--gray-color);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* KURUMSAL SAYFA */
.page-header {
  height: 40vh;
  background: linear-gradient(rgba(0, 123, 255, 0.7), rgba(0, 184, 148, 0.7)), url('../img/kurumsal-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.kurumsal {
  padding: 80px 0;
  background: var(--white);
}

.kurumsal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .kurumsal-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.kurumsal-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-left: 5px solid var(--secondary-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.kurumsal-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.kurumsal-box h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kurumsal-box h3 i {
  color: var(--secondary-color);
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 184, 148, 0.1);
  border-radius: 50%;
}

.kurumsal-box p {
  color: var(--gray-color);
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}

.kurumsal-values {
  padding: 80px 0;
  background: var(--light-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

.value-item h4 {
  color: var(--dark-color);
  font-size: 1.3rem;
  font-weight: 600;
}

/* ANİMASYONLAR */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu a {
    margin: 15px 0;
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .value-item {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .nav-content {
    padding: 10px 0;
  }
  
  .brand-name {
    font-size: 0.9rem;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .kurumsal-box {
    padding: 25px 20px;
  }
  
  .kurumsal-box h3 {
    font-size: 1.3rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}
/* GENEL DEĞİŞKENLER VE STİLLER */
:root {
  --primary-color: #007BFF;
  --secondary-color: #00B894;
  --dark-color: #333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --white: #fff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR - DÜZELTİLMİŞ */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.brand-name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.menu {
  display: flex;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: var(--dark-color);
  margin-left: 25px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.menu a:hover, .menu a.active {
  color: var(--primary-color);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.menu a:hover::after, .menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  background: none;
  border: none;
  padding: 5px;
}

/* MOBİL MENÜ DÜZELTMESİ */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu a {
    margin: 15px 0;
    font-size: 1.2rem;
    margin-left: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO BANNER */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 123, 255, 0.7), rgba(0, 184, 148, 0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.cta-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  animation: fadeIn 1.5s ease;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.cta-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cta-btn i {
  margin-left: 8px;
  transition: var(--transition);
}

.cta-btn:hover i {
  transform: translateX(5px);
}

/* BÖLÜM BAŞLIKLARI */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* İLETİŞİM SAYFASI - YENİDEN DÜZENLENDİ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.contact-info {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3, .contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-text strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.contact-text p {
  color: var(--gray-color);
  margin: 0;
}

/* FORM STİLLERİ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* HARITA */
.map-container {
  margin-top: 30px;
}

.map-container h4 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 300px;
  background: #f5f5f5;
}

/* SOSYAL MEDYA */
.social-links-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border-radius: 50%;
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* ÇALIŞMA SAATLERİ */
.working-hours {
  padding: 60px 0;
  background: var(--light-color);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hour-item {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.hour-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hour-item.highlight {
  border-left-color: var(--secondary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.hour-item.highlight .day,
.hour-item.highlight .hours {
  color: var(--white);
}

.day {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.hours {
  color: var(--primary-color);
  font-weight: 500;
}

/* ANİMASYONLAR */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px 25px;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 25px 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}