/* index.css - Core Design System & Custom Styles */

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

:root {
  --primary-color: #0073ff;
  --secondary-color: #10b981;
  --text-dark: #0b2265;
  --text-muted: #475569;

  --blue-accent: #0073ff;
  --green-accent: #10b981;
  --orange-accent: #f59e0b;
  --purple-accent: #8b5cf6;

  --bg-gradient: radial-gradient(circle at 10% 10%, rgba(0, 115, 255, 0.08) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0) 50%),
    #f8fafc;
  --footer-bg: #0b1a36;
  --font-family-title: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-muted);
  background: #f8fafc;
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--text-dark);
}

/* Custom Gradients */
.text-gradient-blue {
  background: linear-gradient(135deg, #0b2265 0%, #0073ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #0073ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-teal {
  background: linear-gradient(135deg, #0d6efd 0%, #10b981 100%);
}

.bg-gradient-blue-teal {
  background: linear-gradient(135deg, #00d2ff 0%, #00d4ff 0.01%, #3a7bd5 100%);
}

.bg-gradient-card {
  background: linear-gradient(135deg, #031b4e 0%, #07389a 100%);
}

/* Logo Styling */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  object-fit: contain;
  width: 220px;
  height: 60px;
}

.logo-footer {
  object-fit: contain;
  width: 220px;
  height: 80px;
}

.logo-text {
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.logo-text span {
  color: var(--primary-color);
}

.logo-subtext {
  font-family: var(--font-family-title);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #64748b;
  display: block;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Custom Buttons */
.btn-download {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-family-title);
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.btn-download:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-store {
  border: 1.5px solid #cbd5e1;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-store:hover {
  border-color: #0f172a;
  background-color: #0f172a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-store i {
  font-size: 1.8rem;
}

.btn-store .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-store .store-text .small-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 500;
  color: inherit;
  opacity: 0.8;
}

.btn-store .store-text .large-text {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-family-title);
  color: inherit;
}

/* Feature List (Timeline style) */
.feature-timeline {
  position: relative;
  padding-left: 20px;
  margin-top: 40px;
}

.feature-timeline::before {
  content: '';
  position: absolute;
  left: 45px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-accent) 0%, var(--green-accent) 33%, var(--orange-accent) 66%, var(--purple-accent) 100%);
  opacity: 0.3;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: relative;
}

.feature-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.feature-icon.orange {
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.feature-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-content h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.feature-item.blue h4 {
  color: #1d4ed8;
}

.feature-item.green h4 {
  color: #047857;
}

.feature-item.orange h4 {
  color: #c2410c;
}

.feature-item.purple h4 {
  color: #6d28d9;
}

/* Interactive Smartphone Mockup */
.mockup-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  z-index: 10;
}

.phone-mockup {
  background: #111827;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4),
    0 0 0 4px #1f2937,
    0 0 0 10px #4b5563;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-mockup:hover {
  transform: translateY(-8px) rotate(1deg);
}

/*.phone-screen */
.phone-screen {
  background: #f8fafc;
  border-radius: 38px;
  height: 680px;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  display: flex;
  flex-direction: column;
}

.phone-screen::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

/* Phone Bezel/Camera Notch */
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 25px;
  background: #111827;
  border-radius: 15px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-camera {
  width: 8px;
  height: 8px;
  background: #1f2937;
  border-radius: 50%;
  margin-right: 6px;
}

.phone-speaker {
  width: 40px;
  height: 4px;
  background: #374151;
  border-radius: 2px;
}

/* Phone Screen Header */
.screen-header {
  padding: 40px 20px 20px 20px;
  background: linear-gradient(to bottom, #0c4a6e 0%, #0284c7 100%);
  color: white;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.15);
}

.status-bar-time {
  font-size: 0.75rem;
  font-weight: 600;
}

.screen-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.welcome-msg {
  line-height: 1.2;
}

.welcome-msg .user-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.welcome-msg .sub {
  font-size: 0.7rem;
  opacity: 0.8;
}

.header-actions i {
  font-size: 1.1rem;
  opacity: 0.9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-actions i:hover {
  transform: rotate(180deg);
}

/* Phone Content Cards */
.screen-content {
  padding: 16px;
  flex-grow: 1;
}

.balance-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(11, 34, 101, 0.05);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.balance-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.balance-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b2265;
  margin: 4px 0;
}

.balance-badge {
  background-color: #f0fdf4;
  color: #10b981;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Quick Stats */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 15px;
}

.quick-stat-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid #edf2f7;
}

.quick-stat-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
}

.quick-stat-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  margin-top: 2px;
}

.quick-stat-value.income {
  color: #16a34a;
}

.quick-stat-value.expense {
  color: #dc2626;
}

/* Sub Widgets */
.widgets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.widget-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.widget-icon.orange {
  background: #fffbeb;
  color: #d97706;
}

.widget-icon.yellow {
  background: #fef3c7;
  color: #b45309;
}

.widget-text {
  line-height: 1.2;
}

.widget-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.widget-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b2265;
}

/* Daily Expense Trend Chart Container */
.chart-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(11, 34, 101, 0.04);
  border: 1px solid #f1f5f9;
  margin-top: 15px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.chart-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b2265;
}

.chart-dropdown {
  font-size: 0.65rem;
  background: #f1f5f9;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  color: #475569;
  font-weight: 600;
}

.chart-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 8px;
}

.chart-sum-box {
  line-height: 1.2;
}

.chart-sum-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.chart-sum-val {
  font-size: 0.85rem;
  font-weight: 800;
}

.chart-sum-val.red {
  color: #dc2626;
}

/* Phone Bottom Floating Button and Nav Bar */
.phone-fab {
  position: absolute;
  bottom: 65px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-fab:hover {
  transform: rotate(90deg) scale(1.1);
}

.phone-navbar {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-item i {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.nav-item.active {
  color: #0073ff;
}

/* Floating 3D Elements */
.decorations-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.coin-decor {
  position: absolute;
  z-index: 12;
  filter: drop-shadow(0 15px 25px rgba(217, 119, 6, 0.25));
  animation: float 4s ease-in-out infinite;
}

.coin-decor.coin-1 {
  bottom: 8%;
  right: -55px;
  width: 120px;
  animation-delay: 0s;
}

.coin-decor.coin-2 {
  bottom: 22%;
  right: -30px;
  width: 75px;
  animation-delay: 1.5s;
}

.growth-arrow {
  position: absolute;
  bottom: 25%;
  right: -70px;
  z-index: 5;
  width: 160px;
  filter: drop-shadow(0 15px 30px rgba(16, 185, 129, 0.2));
  animation: arrow-entrance 6s ease-in-out infinite alternate;
}

.chart-bar-decor {
  position: absolute;
  bottom: 12%;
  right: -60px;
  z-index: 4;
  width: 180px;
  opacity: 0.9;
  filter: drop-shadow(0 15px 25px rgba(13, 110, 253, 0.15));
}

.plane-decor {
  position: absolute;
  top: 8%;
  right: -40px;
  width: 80px;
  transform: rotate(-15deg);
  opacity: 0.85;
  animation: plane-float 5s ease-in-out infinite alternate;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes plane-float {
  0% {
    transform: translateY(0px) rotate(-15deg) translateX(0px);
  }

  100% {
    transform: translateY(-15px) rotate(-10deg) translateX(10px);
  }
}

@keyframes arrow-entrance {
  0% {
    transform: translateY(0px) scale(0.95);
  }

  100% {
    transform: translateY(-10px) scale(1.02);
  }
}

/* Premium Footer Banner */
.premium-footer-banner {
  background: #f1f5f9;
  color: var(--text-dark);
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-right: 1px solid #e2e8f0;
  height: 100%;
}

.highlight-box:last-child {
  border-right: none;
}

.highlight-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

#highlight-secure .highlight-icon-wrapper {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

#highlight-fast .highlight-icon-wrapper {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

#highlight-cloud .highlight-icon-wrapper {
  background: rgba(0, 115, 255, 0.1);
  color: #0073ff;
  border: 1px solid rgba(0, 115, 255, 0.2);
}

#highlight-everyone .highlight-icon-wrapper {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

#highlight-secure:hover .highlight-icon-wrapper {
  background: rgba(16, 185, 129, 0.2);
  transform: scale(1.1);
}

#highlight-fast:hover .highlight-icon-wrapper {
  background: rgba(245, 158, 11, 0.2);
  transform: scale(1.1);
}

#highlight-cloud:hover .highlight-icon-wrapper {
  background: rgba(0, 115, 255, 0.2);
  transform: scale(1.1);
}

#highlight-everyone:hover .highlight-icon-wrapper {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}

.highlight-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  color: #0b2265 !important;
}

.highlight-content p {
  font-size: 0.75rem;
  color: #475569 !important;
  margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .coin-decor.coin-1 {
    right: -30px;
    width: 100px;
  }

  .coin-decor.coin-2 {
    right: -10px;
    width: 65px;
  }

  .growth-arrow {
    right: -40px;
    width: 130px;
  }

  .chart-bar-decor {
    right: -35px;
    width: 140px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 40px 0 60px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-group-hero {
    justify-content: center;
  }

  .feature-timeline {
    max-width: 550px;
    margin: 40px auto 0 auto;
    text-align: left;
  }

  .mockup-container {
    margin-top: 60px;
  }

  .highlight-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .highlight-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .btn-group-hero {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-download {
    width: 100%;
    justify-content: center;
  }

  .btn-store {
    width: 100%;
    justify-content: center;
  }

  .mockup-container {
    max-width: 320px;
  }

  .phone-screen {
    height: 600px;
  }

  .coin-decor.coin-1 {
    width: 80px;
    right: -20px;
  }

  .coin-decor.coin-2 {
    width: 50px;
    right: -5px;
  }

  .growth-arrow {
    width: 100px;
    right: -25px;
  }

  .chart-bar-decor {
    width: 110px;
    right: -20px;
  }
}

/* Navigation Header Customization */
.custom-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.custom-navbar .nav-link {
  font-family: var(--font-family-title);
  font-weight: 500;
  font-size: 1.05rem;
  color: #475569;
  padding: 8px 16px !important;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.custom-navbar .nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(13, 110, 253, 0.05);
}

.custom-navbar .nav-link.active-link {
  color: var(--primary-color) !important;
  font-weight: 700;
  background-color: rgba(13, 110, 253, 0.08);
}

.custom-navbar .btn-primary {
  font-family: var(--font-family-title);
  font-weight: 600;
}

/* Inner Page Header */
.page-header {
  padding: 80px 0 65px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-header-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphism Section Card & Forms */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(11, 34, 101, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
  border-color: rgba(0, 115, 255, 0.3) !important;
  box-shadow: 0 15px 35px rgba(0, 115, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.85);
}

.feature-card-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 115, 255, 0.35) !important;
  box-shadow: 0 20px 40px rgba(0, 115, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.9);
}

.contact-card-info {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--secondary-color);
  color: #ffffff;
  transform: scale(1.1);
}

/* Custom Styled Inputs */
.custom-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0b2265;
  margin-bottom: 8px;
}

.custom-form .form-control {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #0b2265;
  transition: all 0.3s ease;
}

.custom-form .form-control::placeholder {
  color: #94a3b8;
}

.custom-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 115, 255, 0.15);
  background: #ffffff;
  color: #0b2265;
}

/* Team Profile Cards */
.team-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 115, 255, 0.1);
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 115, 255, 0.3) !important;
}

.team-avatar-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  position: relative;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.1);
}

/* Other Features Cards & Icons */
.feature-card-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
  background: #ffffff !important;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-card-icon.blue {
  background: rgba(0, 115, 255, 0.1);
  color: #0073ff;
  border: 1px solid rgba(0, 115, 255, 0.2);
}

.feature-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-card-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Expanded Footer Customization */
.expanded-brand-footer {
  background: var(--footer-bg) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.expanded-brand-footer h1,
.expanded-brand-footer h2,
.expanded-brand-footer h3,
.expanded-brand-footer h4,
.expanded-brand-footer h5,
.expanded-brand-footer h6 {
  color: #ffffff !important;
}

.expanded-brand-footer p,
.expanded-brand-footer span,
.expanded-brand-footer .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Highlights Banner Overrides for Scoped Footer Nesting */
.expanded-brand-footer .premium-footer-banner h5 {
  color: #0b2265 !important;
}

.expanded-brand-footer .premium-footer-banner p {
  color: #475569 !important;
}

.footer-links-list {
  padding-left: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  color: #ffffff !important;
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-social-icons {
    justify-content: flex-end;
  }
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Glowing background blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.blob-blue {
  background: #0d6efd;
  width: 500px;
  height: 500px;
}

.blob-green {
  background: #10b981;
  width: 400px;
  height: 400px;
}

.blob-purple {
  background: #8b5cf6;
  width: 550px;
  height: 550px;
}

/* Card icon hover micro-animation */
.feature-card-item:hover .feature-card-icon i {
  animation: icon-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes icon-pop {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.22) rotate(8deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Staggered Phone Showcase Container */
.staggered-phones-wrapper {
  position: relative;
  height: 480px;
  max-width: 420px;
  margin: 40px auto 0 auto;
  z-index: 10;
}

.staggered-phone {
  position: absolute;
  width: 210px;
  height: 400px;
  background: #1e293b;
  border-radius: 28px;
  padding: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.staggered-phone .phone-bezel-inner {
  border-radius: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.staggered-phone .phone-screen-content {
  height: 100%;
  border-radius: 24px;
  overflow-y: auto;
  scrollbar-width: none;
}

.staggered-phone .phone-screen-content::-webkit-scrollbar {
  display: none;
}

.staggered-phone .mini-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 14px;
  background: #1e293b;
  border-radius: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staggered-phone .mini-camera {
  width: 4px;
  height: 4px;
  background: #334155;
  border-radius: 50%;
}

/* Stagger positions */
.staggered-phone.phone-left {
  left: 0;
  top: 40px;
  transform: rotate(-10deg) scale(0.88);
  z-index: 5;
}

.staggered-phone.phone-right {
  right: 0;
  top: 40px;
  transform: rotate(10deg) scale(0.88);
  z-index: 5;
}

.staggered-phone.phone-center {
  left: 50%;
  transform: translateX(-50%) scale(1.0);
  top: 10px;
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Hover transitions */
.staggered-phone:hover {
  transform: scale(1.08) rotate(0deg) !important;
  z-index: 1000 !important;
  box-shadow: 0 30px 60px rgba(13, 110, 253, 0.25) !important;
  border: 1.5px solid rgba(13, 110, 253, 0.5);
}

.staggered-phone.phone-center:hover {
  transform: translateX(-50%) scale(1.08) rotate(0deg) !important;
}

@media (max-width: 575.98px) {
  .staggered-phones-wrapper {
    height: 420px;
    max-width: 320px;
  }

  .staggered-phone {
    width: 170px;
    height: 330px;
  }

  .staggered-phone.phone-left {
    left: -10px;
  }

  .staggered-phone.phone-right {
    right: -10px;
  }
}