/* Modernized Chat Footer CSS */

/* Define CSS Variables for Colors & Typography */
:root {
  --primary-color: #4285F4;       /* Trust & Stability Blue */
  --primary-hover: #3367D6;       /* Slightly darker blue for hover states */
  --text-color: #4b5563;          /* Neutral grey for text */
  --border-color: #e5e7eb;        /* Light grey for borders */
  --cta-text-color: #ffffff;      /* White text for buttons */
  --font-family: 'Open Sans', sans-serif;
  
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* CTA Button */
.cta-button {
  background-color: var(--primary-color);
  color: var(--cta-text-color);
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-hover);
}

/* Footer Styles */
footer {
  background-color: #ffffff;
  padding: 40px 20px;
  border-top: 1px solid var(--border-color);
  font-family: var(--font-family);
  color: var(--text-color);
}

/* Container for Footer Content */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Footer Logo */
.footer-logo img {
  height: 40px;
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 50px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 18px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  margin: 20px auto 0;
  max-width: 1200px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Language Dropdown */
.footer-language {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-color);
}

.dropdown-icon {
  margin-left: 5px;
  font-size: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
