/* ========== VARIABLES ========== */
:root {
  --primary: #0b3d91;
  --primary-dark: #08306b;
  --secondary: #1c5aa0;
  --accent: #ff6b35;
  --accent-dark: #e55a2b;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --border: #e0e0e0;
  --border-light: #f0f0f0;
  --success: #27ae60;
  --warning: #f39c12;
  --error: #e74c3c;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

/* ========== NAVIGATION ========== */
.navbar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  background: white;
  padding: 5px 10px;
  border-radius: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex: 1;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
}

.hero-slider-wrap {
  max-width: 1200px;
  margin: 0 auto 60px;
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(0, 17, 62, 0.7);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
}

.slide-copy h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.slide-copy p {
  font-size: 1rem;
  line-height: 1.6;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 24px;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.domain-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.showcase-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.showcase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.showcase-copy {
  padding: 24px;
}

.showcase-copy h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.showcase-copy p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== DOMAIN SEARCH SECTION ========== */
.domain-search {
  background: var(--light);
  padding: 80px 0;
  position: relative;
}

.domain-search-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.domain-search h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.domain-search p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.domain-search-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  margin-bottom: 30px;
}

.search-input-group {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.domain-input {
  flex: 1;
  padding: 20px 24px;
  border: 2px solid var(--border);
  font-size: 18px;
  outline: none;
  transition: var(--transition);
}

.domain-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.domain-select {
  padding: 20px 24px;
  border: 2px solid var(--border);
  background: white;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  min-width: 120px;
}

.btn-search {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.domain-suggestions {
  color: var(--text-light);
  font-size: 15px;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.domain-suggestions span {
  color: var(--text-light);
  font-weight: 600;
}

.domain-suggestions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(11, 61, 145, 0.15);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.domain-suggestions a:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== CLOUD SERVICES SECTION ========== */
.cloud-services {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.cloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.cloud-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cloud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.cloud-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.cloud-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cloud-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 25px;
}

.cloud-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.cloud-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cloud-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.cloud-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}

.cloud-features i {
  color: var(--success);
  font-size: 12px;
}

.cloud-price {
  margin-bottom: 25px;
}

.cloud-price .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.cloud-price .period {
  color: var(--text-light);
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 16px;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 100px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 3px solid var(--accent);
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: var(--text);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-price {
  margin-bottom: 25px;
}

.service-price .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.service-price .period {
  color: var(--text-light);
  font-size: 16px;
}
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  color: white;
}

.service-overlay h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 15px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--success);
  margin-right: 10px;
  width: 16px;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 80px 0;
}

.features h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== DOMAIN PAGE STYLES ========== */
.domain-hero {
  background: var(--gradient);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.domain-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.domain-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.domain-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.domain-hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.pricing-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.pricing-top-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media screen and (max-width: 980px) {
  .domain-search-layout,
  .domain-hero-grid,
  .pricing-top {
    grid-template-columns: 1fr;
  }

  .domain-visual-card {
    position: static;
    margin-top: 24px;
  }
}

.domain-results {
  padding: 60px 0;
  background: var(--light);
}

.results-list {
  max-width: 800px;
  margin: 0 auto;
}

.domain-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.domain-result.available {
  border-left: 4px solid var(--success);
}

.domain-result.unavailable {
  border-left: 4px solid var(--error);
}

.domain-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.availability {
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.available-text {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
}

.unavailable-text {
  background: rgba(231, 76, 60, 0.1);
  color: var(--error);
}

.domain-price {
  text-align: right;
}

.domain-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.domain-price .period {
  color: var(--text-light);
  font-size: 14px;
}

.suggestion {
  color: var(--text-light);
  font-style: italic;
}

.domain-pricing {
  padding: 80px 0;
  background: white;
}

.hidden {
  display: none !important;
}

.domain-registration {
  padding: 80px 0;
  background: #f5f7ff;
}

.registration-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: var(--shadow);
}

.registration-summary {
  margin-bottom: 24px;
}

.registration-summary p {
  margin-bottom: 10px;
  color: var(--text);
}

.payment-highlight {
  color: var(--accent);
  font-weight: 700;
}

.registration-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 600;
  color: var(--text-light);
}

.form-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
}

.form-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.08);
}

.pricing-table {
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.domain-payment-methods {
  padding: 80px 0;
  background: #f7fbff;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.payment-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: var(--shadow);
}

.payment-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.payment-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin: 14px 0;
}

.payment-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(11, 61, 145, 0.08);
  border-radius: var(--radius);
  color: var(--text);
}

.converted {
  display: block;
  margin-top: 6px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.pricing-cell {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-cell:last-child {
  border-right: none;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:nth-child(even) {
  background: var(--light);
}

.pricing-row .pricing-cell:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}

.extension {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.period {
  color: var(--text-light);
  font-size: 14px;
}

.domain-features {
  padding: 80px 0;
  background: var(--light);
}

.domain-transfer {
  padding: 80px 0;
  background: white;
}

.transfer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.transfer-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.transfer-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.transfer-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.transfer-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
}

.transfer-benefits i {
  color: var(--success);
}

.transfer-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.transfer-form {
  margin-top: 30px;
}

.transfer-form .form-group {
  margin-bottom: 20px;
}

.transfer-form input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.transfer-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.transfer-form .btn {
  width: 100%;
}

/* ========== CHAT PAGE ========== */
.chat-page {
  padding: 100px 0;
  background: var(--light);
}

.chat-hero {
  text-align: center;
  margin-bottom: 50px;
}

.chat-hero h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.chat-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.chat-room {
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 35px;
  background: var(--primary);
  color: white;
}

.chat-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.chat-header p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.chat-header .status {
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.chat-messages {
  max-height: 520px;
  overflow-y: auto;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f9fbff;
}

.chat-bubble {
  max-width: 75%;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  line-height: 1.6;
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 8px;
}

.chat-bubble.bot {
  align-self: flex-start;
  background: white;
  color: var(--text);
  border-bottom-left-radius: 8px;
}

.chat-bubble .sender {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.8;
}

.chat-input-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  padding: 25px 35px 35px;
  background: white;
  border-top: 1px solid var(--border);
}

.chat-input-bar input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.chat-input-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.chat-input-bar button {
  min-width: 140px;
}

.chat-status {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 15px 35px 40px;
}

@media (max-width: 800px) {
  .chat-header,
  .chat-input-bar,
  .chat-messages {
    padding-left: 20px;
    padding-right: 20px;
  }

  .chat-bubble {
    max-width: 100%;
  }
}

/* ========== QUICK LAUNCH SECTION ========== */
.quick-launch {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  position: relative;
  overflow: hidden;
}

.quick-launch::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 61, 145, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.launch-content {
  position: relative;
  z-index: 1;
}

.launch-header {
  text-align: center;
  margin-bottom: 60px;
}

.launch-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.launch-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.launch-step {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border-top: 4px solid var(--accent);
}

.launch-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.step-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.step-features li:last-child {
  margin-bottom: 0;
}

.step-features i {
  color: var(--success);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.launch-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  background: white;
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}

.benefit-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.launch-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.launch-cta .btn {
  min-width: 200px;
}

/* ========== PRICING SECTION ========== */
.pricing {
  padding: 80px 0;
  background: var(--light);
}

.pricing h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary);
}

.pricing-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  font-weight: 600;
}

.pricing-toggle span {
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle span.active {
  color: var(--primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.savings {
  background: var(--success);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.plan-name {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.plan-price {
  font-size: 48px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-price span {
  font-size: 18px;
  color: var(--text-light);
}

.plan-description {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 14px;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features i {
  color: var(--success);
  margin-right: 10px;
  width: 20px;
}

.money-back {
  text-align: center;
  color: var(--success);
  font-weight: 600;
  font-size: 16px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--light);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content p {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-author h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

.testimonials-stats .stat-item {
  margin-bottom: 20px;
}

.testimonials-stats .stat-item:last-child {
  margin-bottom: 0;
}

.testimonials-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.testimonials-stats .stat-label {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}

.author-info h4 {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.author-info span {
  color: var(--text-light);
  font-size: 13px;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 80px 0;
  background: var(--light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.about-stat .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 80px 0;
}

.contact h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 18px;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

/* ========== CTA SECTION ========== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .testimonial-card blockquote::before {
    display: none;
  }

  .quick-launch {
    padding: 60px 15px;
  }

  .launch-header h2 {
    font-size: 1.8rem;
  }

  .launch-steps {
    gap: 20px;
    margin-bottom: 40px;
  }

  .launch-step {
    padding: 30px 20px;
  }

  .launch-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
  }

  .launch-cta {
    gap: 15px;
    margin-top: 30px;
  }

  .launch-cta .btn {
    min-width: auto;
    flex: 1;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .about-stats {
    gap: 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .launch-header h2 {
    font-size: 1.5rem;
  }

  .launch-subtitle {
    font-size: 1rem;
  }

  .launch-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .launch-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
  }

  .launch-cta {
    flex-direction: column;
    gap: 10px;
  }

  .launch-cta .btn {
    width: 100%;
  }

  .pricing-toggle {
    font-size: 14px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.alert {
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ========== PAYMENT SECTION STYLES ========== */
.payment-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  animation: fadeInUp 0.6s ease-out;
}

.payment-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.payment-header {
  background: var(--gradient);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.payment-header h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 700;
}

.payment-status {
  margin: 0;
  opacity: 0.95;
  font-size: 1.1rem;
  font-weight: 500;
}

.payment-summary {
  padding: 40px 30px;
  background: var(--light);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.summary-item .label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

.summary-item .value {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.summary-item .amount-ugx {
  color: var(--accent);
  font-size: 1.3rem;
}

.payment-provider-section {
  padding: 40px 30px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.payment-provider-section h3 {
  margin: 0 0 25px;
  color: var(--primary);
  font-size: 1.4rem;
}

.ussd-code-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ussd-code-display .label {
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

.ussd-code {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 25px;
  border-radius: var(--radius-lg);
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.payment-reference-section {
  padding: 40px 30px;
  border-bottom: 1px solid var(--border);
  background: #fafbff;
}

.payment-reference-section h3 {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 1.3rem;
}

.reference-box {
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reference-box code {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  flex: 1;
  word-break: break-all;
}

.reference-note {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-copy {
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  white-space: nowrap;
}

.btn-copy:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.payment-steps {
  padding: 40px 30px;
  border-bottom: 1px solid var(--border);
}

.payment-steps h4 {
  margin: 0 0 25px;
  color: var(--primary);
  font-size: 1.2rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.steps-list li {
  counter-increment: step-counter;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.6;
}

.steps-list li:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.payment-code-section {
  padding: 40px 30px;
  border-bottom: 1px solid var(--border);
  background: #f9fbff;
}

.payment-code-section h4 {
  margin: 0 0 15px;
  color: var(--primary);
  font-size: 1.2rem;
}

.payment-code-section > .instruction {
  margin: 0 0 20px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.1);
}

.form-control::placeholder {
  color: var(--text-lighter);
}

.payment-code-section small {
  display: block;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

#payment-verification-form .btn-large {
  margin-top: 20px;
}

.payment-help {
  padding: 40px 30px;
  background: #fffaf5;
  border-bottom: 1px solid var(--border);
}

.payment-help h4 {
  margin: 0 0 15px;
  color: var(--primary);
  font-size: 1.1rem;
}

.payment-help p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.payment-card > .btn-secondary {
  margin: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Payment Form Styles */
.payment-form-group {
  margin-bottom: 20px;
}

.payment-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.payment-form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  transition: var(--transition);
}

.payment-form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.payment-form-group small {
  display: block;
  margin-top: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .payment-section {
    padding: 30px 15px;
  }

  .payment-card {
    margin: 0 auto;
  }

  .payment-header {
    padding: 25px 20px;
  }

  .payment-header h2 {
    font-size: 1.6rem;
  }

  .payment-summary {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 20px;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-item .value {
    align-self: flex-end;
  }

  .ussd-code {
    font-size: 1.5rem;
    padding: 20px;
  }

  .reference-box {
    flex-direction: column;
    align-items: stretch;
  }

  .reference-box code {
    text-align: center;
  }

  .btn-copy {
    width: 100%;
  }

  .payment-provider-section,
  .payment-reference-section,
  .payment-steps,
  .payment-code-section,
  .payment-help {
    padding: 25px 20px;
  }

  .steps-list li {
    gap: 15px;
  }

  .payment-card > .btn-secondary {
    margin: 20px;
  }
}