/* =====================================================
   FOOTER STYLES - NEW COLOR PALETTE
   Primary Blue: #19255A
   Light Blue: #27BCEE  
   Gray/White: #DADADA
   ===================================================== */

:root {
  --primary-blue: #19255A;
  --light-blue: #27BCEE;
  --neutral-gray: #DADADA;
  --white: #ffffff;
}

.gp-custom-footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0;
  margin-top: 0;
}

.footer-main {
  position: relative;
  min-height: 300px;
}

.footer-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 40px 40px;
}

/* Logo Section (Left) */
.footer-logo-section {
  flex: 0 0 200px;
  margin-right: 40px;
  z-index: 3;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-site-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.footer-content {
  display: flex;
  gap: 120px;
  flex: 1;
  z-index: 2;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  margin-right: 200px;
}

.footer-section {
  flex: 0 1 auto;
  min-width: 280px;
}

.merkez-ofis {
  min-width: 280px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-item:first-of-type {
  margin-bottom: 25px;
}

.footer-label {
  font-weight: 600;
  min-width: 80px;
}

.footer-value {
  color: rgba(218,218,218,0.9);
}

/* Footer links styled as normal text */
.footer-value a {
  color: rgba(218,218,218,0.9) !important;
  text-decoration: none !important;
  cursor: pointer;
}

.footer-value a:hover {
  color: rgba(218,218,218,1) !important;
  text-decoration: none !important;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer-address {
  color: rgba(218,218,218,0.9);
}

/* Menu Section */
.footer-menu {
  min-width: 200px;
}

.footer-nav .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav .footer-menu-list li {
  margin-bottom: 12px;
}

.footer-nav .footer-menu-list a {
  color: rgba(218,218,218,0.9);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-nav .footer-menu-list a:hover {
  color: var(--light-blue);
}

/* Background Image Area */
.footer-background {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
  background-image: url('../images/filigran-vector-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.footer-bg-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .footer-content {
    gap: 60px;
    padding: 40px 30px;
  }
  
  .footer-background {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo-section {
    margin-right: 0;
    margin-bottom: 30px;
    flex: 0 0 20px !important;
  }
  
  .footer-logo {
    max-width: 140px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 0 !important;
  }
  
  .footer-section {
    text-align: center;
    align-items: center;
  }
  
  .footer-item {
    justify-content: center;
    text-align: center;
  }
  
  .footer-nav {
    text-align: center;
  }
  
  .footer-menu-list {
    text-align: center;
  }
  
  .footer-background {
    display: none !important;
  }
  
  .merkez-ofis,
  .footer-menu {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 25px 15px;
  }
  
  .footer-logo {
    max-width: 120px;
  }
  
  .footer-content {
    padding: 0;
    gap: 30px;
  }
  
  .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-item {
    font-size: 13px;
    margin-bottom: 15px;
  }
}