/* CSS Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #d42e2e;
  --primary-light: #e74c4c;
  --primary-dark: #b52525;
  --accent: #c41e3a;
  --accent-light: #e63946;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --muted: #f8f8f8;
  --muted-foreground: #666666;
  --card: #ffffff;
  --border: #e5e5e5;
  --radius: 0.75rem;
  --text-primary: #1a1a1a;
  --text-muted: #666666;
  --bg-secondary: #fafafa;
  --primary-light-bg: rgba(212, 46, 46, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 46, 46, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary);
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-white {
  background-color: white;
  color: var(--accent);
}

.btn-white:hover {
  background-color: var(--muted);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Added styling for Wind Bank logo image */
.logo-image {
  height: 2.5rem;
  width: auto;
  font-weight: 700;
}

@media (min-width: 640px) {
  .logo-image {
    height: 3rem;
  }
}

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

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 640px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
  animation: slideInFromBottom 0.3s ease-out;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Page Hero (for About & Contact pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 8rem 0 5rem;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 0 3rem;
    margin-top: 0;
  }
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2rem;
  }
}

.page-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

@media (max-width: 768px) {
  .page-hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-info-title {
    font-size: 1.5rem;
  }
}

.contact-info-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact-methods {
    gap: 1rem;
  }
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--muted);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .contact-method {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.contact-method:hover {
  background: var(--background);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(212, 46, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .contact-method-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

.contact-method:hover .contact-method-icon {
  background-color: var(--primary);
}

.contact-method:hover .contact-method-icon svg {
  color: white;
}

.contact-method-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.contact-method-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-hours {
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-hours-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hours-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .contact-hours-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.contact-hours-day {
  color: var(--muted-foreground);
}

.contact-hours-time {
  font-weight: 500;
  color: var(--foreground);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInRight 0.6s ease-out forwards;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 46, 46, 0.1);
}

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

.form-submit {
  width: 100%;
}

/* Branches Section */
.branches-section {
  padding: 4rem 0;
  background-color: var(--muted);
}

@media (max-width: 768px) {
  .branches-section {
    padding: 2rem 0;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-description {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .section-description {
    font-size: 0.875rem;
  }
}

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

@media (max-width: 768px) {
  .branches-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.branch-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}

.branch-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.branch-card:hover .branch-image img {
  transform: scale(1.05);
}

.branch-content {
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .branch-content {
    padding: 1rem;
  }
}

.branch-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .branch-name {
    font-size: 1.125rem;
  }
}

.branch-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .branch-info {
    font-size: 0.8125rem;
  }
}

.branch-info svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.branch-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .faq-section {
    padding: 6rem 0;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.faq-item:hover {
  border-color: rgba(30, 58, 138, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.faq-question:hover {
  background-color: var(--muted);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-answer-content {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-section {
    padding: 6rem 0;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.75rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .cta-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: white;
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 3;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .footer-logo {
    justify-content: center;
  }
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* Added styling for Wind Bank logo image in footer */
.footer-logo-image {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  font-weight: 700;
}

@media (min-width: 640px) {
  .footer-logo-image {
    height: 3rem;
  }
}

.footer-logo svg {
  width: 2rem;
  height: 2rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .footer-description {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 1.5rem;
  }
}

.footer-social {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-column h3 {
    text-align: center;
  }
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .footer-column ul {
    align-items: center;
  }
}

.footer-column a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 28rem;
}

@media (min-width: 640px) {
  .footer-legal {
    text-align: right;
  }
}

/* Existing sections below - KEEP ALL YOUR EXISTING CODE BELOW THIS LINE */

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, var(--muted), var(--background));
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  text-wrap: balance;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

@media (min-width: 1024px) {
  .hero-features {
    justify-content: flex-start;
  }
}

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

.hero-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent);
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  animation: float 3s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-floating-card {
    bottom: -1.5rem;
    left: -1.5rem;
  }
}

.hero-floating-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.hero-floating-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-floating-value {
  font-weight: 600;
  color: var(--foreground);
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background-color: var(--primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  opacity: 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* About Us Preview Section */
.about-preview {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .about-preview {
    padding: 6rem 0;
  }
}

.about-preview-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-preview-image {
  position: relative;
  opacity: 0;
}

.about-preview-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-preview-content {
  opacity: 0;
}

.about-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(30, 58, 138, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.about-preview-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .about-preview-title {
    font-size: 2.25rem;
  }
}

.about-preview-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--muted);
  border-radius: var(--radius);
}

.about-preview-stat {
  text-align: center;
}

.about-preview-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 640px) {
  .about-preview-stat-number {
    font-size: 2rem;
  }
}

.about-preview-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.3);
}

@media (min-width: 640px) {
  .features {
    padding: 6rem 0;
  }
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
}

@media (min-width: 640px) {
  .feature-card {
    padding: 2rem;
  }
}

.feature-card:hover {
  border-color: rgba(30, 58, 138, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(30, 58, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
  color: white;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: color 0.4s ease;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .how-it-works {
    padding: 6rem 0;
  }
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  opacity: 0;
}

@media (min-width: 768px) {
  .step-item {
    flex-direction: row;
    text-align: left;
  }

  .step-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.3);
}

@media (min-width: 640px) {
  .products {
    padding: 6rem 0;
  }
}

.products-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
}

.product-card:hover {
  border-color: rgba(30, 58, 138, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-highlight {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.product-content {
  padding: 1.5rem;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(30, 58, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  background-color: var(--primary);
}

.product-card:hover .product-icon svg {
  color: white;
}

.product-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.product-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-cta {
  width: 100%;
}

.product-cta .btn {
  width: 100%;
}

.product-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.product-cta:hover svg {
  transform: translateX(4px);
}

/* Mobile Banking Section */
.mobile-banking {
  padding: 4rem 0;
  background-color: var(--background);
  overflow: hidden;
}

@media (min-width: 640px) {
  .mobile-banking {
    padding: 6rem 0;
  }
}

.mobile-banking-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-banking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mobile-banking-content {
  opacity: 0;
}

.mobile-banking-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .mobile-banking-title {
    font-size: 2.25rem;
  }
}

.mobile-banking-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.mobile-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.mobile-feature-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-feature-check svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--accent);
}

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

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--foreground);
  color: white;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.app-btn:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.app-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.app-btn-text {
  text-align: left;
}

.app-btn-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.app-btn-store {
  font-weight: 600;
  font-size: 0.875rem;
}

.mobile-banking-image {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, var(--foreground), #1e293b);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background-color: var(--muted);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background-color: var(--foreground);
  border-radius: 0 0 1rem 1rem;
}

/* Financial Tips Section */
.financial-tips {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

@media (min-width: 640px) {
  .financial-tips {
    padding: 6rem 0;
  }
}

.tips-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
}

.tip-card:hover {
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.tip-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tip-card:hover .tip-image img {
  transform: scale(1.05);
}

.tip-content {
  padding: 1.5rem;
}

.tip-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tip-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.tip-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.tip-link:hover {
  gap: 0.75rem;
}

.tip-link svg {
  width: 1rem;
  height: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: var(--primary);
  color: white;
}

@media (min-width: 640px) {
  .testimonials {
    padding: 6rem 0;
  }
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
}

.testimonial-rating svg {
  width: 1rem;
  height: 1rem;
  fill: #facc15;
  color: #facc15;
}

/* Security Section */
.security {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.3);
}

@media (min-width: 640px) {
  .security {
    padding: 6rem 0;
  }
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.security-badge {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
}

.security-badge:hover {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.security-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.4s ease;
}

.security-badge:hover .security-icon {
  background-color: var(--accent);
  transform: scale(1.1);
}

.security-badge:hover .security-icon svg {
  color: white;
}

.security-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
  transition: color 0.4s ease;
}

.security-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.security-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* About Page Styles */
.about-story {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .about-story {
    padding: 6rem 0;
  }
}

.about-story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story-content {
  opacity: 0;
}

.about-story-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-story-title {
    font-size: 2.25rem;
  }
}

.about-story-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-story-image {
  opacity: 0;
}

.about-story-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Mission & Values */
.mission-values {
  padding: 4rem 0;
  background-color: var(--muted);
}

@media (min-width: 640px) {
  .mission-values {
    padding: 6rem 0;
  }
}

.mission-values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mission-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mission-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.value-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .team {
    padding: 6rem 0;
  }
}

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
  opacity: 0;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--border);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-image {
  border-color: var(--primary);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.team-social-link:hover {
  background-color: var(--primary);
  color: white;
}

.team-social-link svg {
  width: 1rem;
  height: 1rem;
}

/* Timeline */
.timeline {
  padding: 4rem 0;
  background-color: var(--muted);
}

@media (min-width: 640px) {
  .timeline {
    padding: 6rem 0;
  }
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--border);
}

@media (max-width: 767px) {
  .timeline-container::before {
    left: 1rem;
    transform: none;
  }
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  opacity: 0;
}

@media (max-width: 767px) {
  .timeline-item {
    padding-left: 3rem;
  }
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
}

.timeline-content {
  width: calc(50% - 2rem);
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .timeline-content {
    width: 100%;
  }
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid var(--background);
}

@media (max-width: 767px) {
  .timeline-dot {
    left: 1rem;
    transform: none;
  }
}

.timeline-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.timeline-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background-color: var(--muted);
}

@media (min-width: 640px) {
  .map-section {
    padding: 6rem 0;
  }
}

.map-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .map-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .map-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.branch-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}

.branch-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.branch-address {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.branch-link:hover {
  gap: 0.75rem;
}

.branch-link svg {
  width: 1rem;
  height: 1rem;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .faq {
    padding: 6rem 0;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item:hover {
  border-color: rgba(30, 58, 138, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--muted);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}