/* Base Styles */
:root {
  --primary-blue: #2e86ab;
  --secondary-blue: #a23b72;
  --accent-orange: #f18f01;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --background-light: #f8f9fa;
  --border-color: #e0e0e0;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #2e86ab 0%, #a23b72 100%);
  --gradient-orange: linear-gradient(135deg, #f18f01 0%, #c73e1d 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: var(--primary-blue);
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-bars {
  display: flex;
  gap: 2px;
}

.bar {
  width: 3px;
  height: 12px;
  background: white;
  border-radius: 1px;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 0;
}

.logo span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-medium);
}

.header-actions .menu-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-orange);
  padding: 60px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #333;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.app-preview {
  padding: 20px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
}

.app-header {
  text-align: center;
  margin-bottom: 40px;
}

.app-header span {
  font-size: 18px;
  font-weight: 600;
}

.balance {
  font-size: 32px;
  font-weight: 800;
  margin-top: 10px;
}

.quick-actions-preview {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

.action-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.action-preview i {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 50%;
}

/* Equity Rates Section */
.equity-section {
  background: var(--gradient-orange);
  padding: 80px 20px;
  color: white;
}

.equity-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.equity-text h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.rate-info {
  margin-bottom: 30px;
}

.intro-rate {
  font-size: 16px;
  margin-bottom: 10px;
}

.rate-large {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 5px;
}

.rate-description {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.variable-rates {
  margin-top: 30px;
}

.variable-rates p {
  font-size: 16px;
  margin-bottom: 10px;
}

.rate-medium {
  font-size: 32px;
  font-weight: 700;
  margin: 5px 0;
}

.equity-cta {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.equity-cta:hover {
  background: white;
  color: var(--accent-orange);
}

.equity-image {
  position: relative;
}

.couple-image {
  width: 100%;
  height: 400px;
  background: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Screenshot_20250603-025706.jpg-ebXai7mJsAunxy2X2jBOxDANvYXhCh.jpeg")
    center / cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-medium);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.services-text p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.services-list {
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-item i {
  color: var(--primary-blue);
  font-size: 20px;
}

.service-item span {
  font-size: 16px;
  font-weight: 500;
}

.services-image {
  position: relative;
}

.banking-illustration {
  width: 100%;
  height: 300px;
  background: url("https://i.ibb.co/8nMNB9dc/IMG-20250604-WA0113.jpg")
    center / contain no-repeat;
}

/* Why Bank Section */
.why-bank-section {
  padding: 80px 20px;
  background: var(--background-light);
}

.why-bank-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-bank-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.why-bank-content p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banking-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Security Section */
.security-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  position: relative;
}

.security-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.security-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.security-content p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 80px 20px;
  background: white;
}

.mission-vision-content {
  max-width: 1200px;
  margin: 0 auto;
}

.know-more-header {
  text-align: center;
  margin-bottom: 60px;
}

.know-more-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.financial-village {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.mission-vision-text {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.signature-section {
  text-align: center;
  margin: 60px 0;
}

.signature {
  width: 200px;
  height: 100px;
  margin: 0 auto 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M20 50 Q 50 20, 80 50 T 140 50 Q 170 30, 180 50" stroke="%23333" stroke-width="2" fill="none"/></svg>')
    center / contain no-repeat;
}

.signature-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.signature-title {
  font-size: 16px;
  color: var(--text-medium);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
}

.mission-card,
.vision-card {
  background: var(--background-light);
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-blue);
}

.mission-card h3,
.vision-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mission-card p,
.vision-card p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  margin-bottom: 40px;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-feature i {
  color: #4caf50;
  font-size: 18px;
}

/* Footer */
.main-footer {
  background: #1a1a2e;
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.footer-logo h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
}

.footer-logo span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal p {
  color: var(--text-light);
}

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

.legal-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
}

.legal-links a:hover {
  color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .equity-content {
    grid-template-columns: 1fr;
  }

  .services-content {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .services-text h2 {
    font-size: 32px;
  }
}
