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


:root {
    
    --primary-400: #0d31bb;       
    --primary-600: #0a2796;       
    --secondary-300: #cccccc;
    --secondary-500: #999999;
    --secondary-900: #333333;
    --background-dark: #051042;   
    --text-white: #efefef;        
    --text-white-80: rgba(239, 239, 239, 0.8);
    --text-white-60: rgba(239, 239, 239, 0.6);
    --text-white-15: rgba(239, 239, 239, 0.15);
    --text-white-10: rgba(239, 239, 239, 0.1);
    --transition-speed: 0.35s;
    --font-family: 'Poppins', sans-serif;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  .footer-container {
    max-width: 1500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .site-footer-section {
    position: relative;
    display: block;
    z-index: 10;
    overflow: hidden;
    isolation: isolate;
    font-family: var(--font-family);
    background-color: var(--background-dark);
  }
  
  .site-footer-bg-overlay {
    background-image: linear-gradient(180deg, var(--background-dark) 0%, rgba(5, 16, 66, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    transform: translateZ(0);
    pointer-events: none;
  }
  
  .site-footer-main {
    position: relative;
    z-index: 20;
    padding: 100px 0;
  }
  
  .site-footer-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
    gap: 80px;
  }
  
  .site-footer-mobile-separator {
    display: none;
    width: 100%;
    height: 1px;
    background-color: var(--text-white-10);
  }
  
  .site-footer-contact-area {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  .site-footer-logo-wrapper {
    width: fit-content;
  }
  
  .site-footer-logo {
    overflow: hidden;
    max-width: 300px;
    transition: transform var(--transition-speed) ease;
  }

  .site-footer-logo:hover {
    transform: scale(1.05);
  }
  
  .site-footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .site-footer-about-text p {
    font-size: 20px;
    line-height: 1.8; 
    color: var(--text-white-60);
    max-width: 480px;
    font-weight: 400;
  }
  
  .site-footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }
  
  .site-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 20px; 
    text-decoration: none;
  }
  
  .site-footer-contact-icon {
    font-size: 24px;
    height: 24px;
    width: 24px;
    color: var(--primary-400);
    transition: transform var(--transition-speed) ease;
  }
  
  .site-footer-contact-link:hover .site-footer-contact-icon {
      transform: scale(1.2) rotate(-5deg);
  }
  
  .site-footer-contact-text {
    font-size: 22px;
    color: var(--text-white-80);
    line-height: 1.6;
    transition: color var(--transition-speed) ease;
    font-weight: 500;
  }
  
  .site-footer-contact-link:hover .site-footer-contact-text {
    color: var(--text-white);
  }
  
  .site-footer-nav-area {
    max-width: 700px;
    width: 100%;
    justify-self: end;
  }
  
  .site-footer-nav-grid {
    display: flex;
    gap: 110px;
    margin-left: 60px;
  }
  
  .site-footer-nav-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .site-footer-nav-title {
    margin-bottom: -10px;
  }
  
  .site-footer-nav-title p {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--text-white);
    position: relative;
    padding-bottom: 18px;
  }

  .site-footer-nav-title p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--primary-400);
    transition: width var(--transition-speed) ease-in-out;
  }

  .site-footer-nav-column:hover .site-footer-nav-title p::after,
  .site-footer-newsletter-area:hover .site-footer-nav-title p::after {
    width: 90px;
  }
  
  .site-footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }
  
  .site-footer-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
  }
  
  .site-footer-nav-link p {
    font-size: 22px;
    line-height: 1.2;
    color: var(--text-white-80);
    transition: all var(--transition-speed) ease;
    font-weight: 500;
  }
  
  .site-footer-nav-arrow {
    font-size: 18px;
    color: var(--text-white-80);
    transition: all var(--transition-speed) ease;
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .site-footer-nav-link:hover p {
    color: var(--primary-400);
    transform: translateX(5px);
  }
  
  .site-footer-nav-link:hover .site-footer-nav-arrow {
    color: var(--primary-400);
    opacity: 1;
    transform: translateX(0);
  }
  
  .site-footer-social-list {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .site-footer-social-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white-80);
    font-size: 22px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
  }

  .site-footer-social-list li a:hover {
    background-color: var(--primary-400);
    border-color: var(--primary-400);
    color: var(--text-white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .site-footer-newsletter-area {
    margin-top: 50px;
    margin-left: 60px;
  }

  .site-footer-newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }

  .site-footer-newsletter-input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 18px;
    transition: all var(--transition-speed) ease;
    flex-grow: 1;
  }

  .site-footer-newsletter-input::placeholder {
    color: var(--text-white-60);
  }

  .site-footer-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-400);
    background-color: rgba(0, 0, 0, 0.3);
  }

  .site-footer-newsletter-button {
    padding: 18px 35px;
    border-radius: 12px;
    border: none;
    background-color: var(--primary-400);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
  }

  .site-footer-newsletter-button:hover {
    background-color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .site-footer-bottom-bar {
    position: relative;
    z-index: 20;
    padding: 35px 0;
    width: 100%;
    border-top: 1px solid var(--text-white-10);
  }
  
  .site-footer-copyright {
    text-align: center;
    font-size: 17px;
    color: var(--text-white-60);
    font-weight: 500;
  }

  .site-footer-copyright a {
    color: var(--text-white-80);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    font-weight: 600;
  }

  .site-footer-copyright a:hover {
    color: var(--primary-400);
  }

  /* Medya Sorguları (Responsive Tasarım) */
  @media (max-width: 1280px) {
    .site-footer-nav-grid {
        gap: 60px;
        margin-left: 0;
    }
    .site-footer-newsletter-area {
        margin-left: 0;
    }
  }
  
  @media (max-width: 1024px) {
    .site-footer-main-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 70px;
    }
    .site-footer-nav-area {
        justify-self: start;
    }
  }

  @media (max-width: 768px) {
    .site-footer-contact-area, .site-footer-nav-area {
        text-align: center;
    }
    .site-footer-logo-wrapper, .site-footer-logo {
        margin: 0 auto;
    }
    .site-footer-about-text p {
        margin: 0 auto;
        font-size: 18px;
    }
    .site-footer-contact-link {
        justify-content: center;
    }
    .site-footer-contact-text {
        font-size: 20px;
    }
    .site-footer-nav-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .site-footer-nav-column {
        align-items: center;
        width: 100%;
    }
     .site-footer-nav-title p {
        font-size: 26px;
    }
    .site-footer-nav-link p {
        font-size: 20px;
    }
    .site-footer-social-list {
        justify-content: center;
    }
    .site-footer-newsletter-area {
        text-align: center;
    }
    .site-footer-nav-title p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .site-footer-newsletter-form {
        flex-direction: column;
    }
    .site-footer-copyright {
        font-size: 15px;
        line-height: 1.6;
    }
  }
  
  @media (max-width: 480px) {
    .site-footer-main {
        padding: 70px 0;
    }
    .site-footer-logo {
      max-width: 240px;
    }
    .site-footer-about-text p {
        font-size: 16px;
    }
    .site-footer-contact-text {
        font-size: 18px;
    }
    .site-footer-nav-title p {
        font-size: 24px;
    }
    .site-footer-nav-link p {
        font-size: 18px;
    }
  }

 
  @media (min-width: 1280px) {
    .site-footer-section {
      margin: 2rem;
      border-radius: 50px;
      box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    }
  }
