/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

@media (min-width: 1024px) {
  .nav-container {
    display: grid;
    grid-template-columns: 240px 1fr 180px;
  }
  nav {
    display: flex;
    justify-content: center;
  }
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2b2b35;
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 5%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 90%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.contact-phone span {
  font-size: 0.75rem;
  color: #6e6e7e;
  text-transform: uppercase;
}

.contact-phone a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(128, 0, 128, 0.12) 0%, transparent 50%),
              linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.82)),
              url('../images/stadtaraftar.png');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-banner-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-image::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.hero-card {
  width: 100%;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.hero-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-align: center;
}

/* Campaign Ticker Banner */
.campaign-ticker-container {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  padding: 9px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.campaign-ticker-container:hover {
  opacity: 0.92;
}

.campaign-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-slide 35s linear infinite;
}

.campaign-ticker-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.campaign-ticker-content span {
  font-size: 1.15rem;
  font-weight: 500;
  color: #111115;
  letter-spacing: 1px;
  margin-right: 28px;
  white-space: nowrap;
  font-family: var(--font-family);
  display: inline-flex;
  align-items: center;
}

.campaign-ticker-content span.cta-text {
  color: #e50914;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Stats Section */
.stats {
  padding: 50px 0;
  background: linear-gradient(90deg, #800080 0%, #e50914 100%);
  border: none;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Section Header Utilities */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Packages Section */
.packages {
  padding: 100px 0;
  background-color: #ffffff;
  color: #121216;
}

.packages .container {
  max-width: 1730px;
}

.packages-title {
  font-size: 2.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #121216;
}

.packages-title i {
  font-style: italic;
  font-weight: 800;
}

.tab-btn {
  background: #f5f5f7;
  border: 1px solid #e5e5ea;
  color: #51515c;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-family);
  font-size: 0.95rem;
}

.tab-btn:hover {
  border-color: #c7c7cc;
  color: #1c1c1e;
  background: #ebebeb;
}

.tab-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

.badge-custom {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-green {
  border: 1.5px solid #2ed573;
  color: #2ed573;
  background: rgba(46, 213, 115, 0.1);
}

.badge-blue {
  border: 1.5px solid #1e90ff;
  color: #3399ff;
  background: rgba(30, 144, 255, 0.1);
}

.badge-pink {
  border: 1.5px solid #ff4d94;
  color: #ff66a3;
  background: rgba(255, 77, 148, 0.12);
}

.badge-orange {
  border: 1.5px solid #ff6a00;
  color: #ff8533;
  background: rgba(255, 106, 0, 0.12);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.packages-grid.single-card {
  grid-template-columns: minmax(320px, 420px);
  justify-content: center;
}

.package-card {
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  color: #ffffff;
  overflow: hidden;
}

.package-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-card.white-card .package-card-content {
  padding: 20px;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(229, 9, 20, 0.05);
}

/* White Card Featured Styles */
.package-card.white-card {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  color: #1c1c1e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.package-card.white-card:hover {
  border-color: #c7c7cc;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.package-card.white-card .package-name {
  color: #1c1c1e !important;
}

.package-card.white-card:hover .package-name {
  color: #e50914 !important;
}

.package-card.white-card .package-tagline {
  color: #636366 !important;
}

.package-card.white-card .package-divider {
  background: #e5e5ea;
}

.package-card.white-card .package-feature-item {
  color: #48484a;
}

.package-card.white-card .package-feature-item strong {
  color: #1c1c1e;
}

.package-card.white-card .package-price-box {
  color: #636366;
}

.package-card.popular {
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.package-card.popular::after {
  content: 'EN POPÜLER';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gradient);
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.2);
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-tagline {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 24px;
  min-height: 40px;
}

.package-price-box {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.package-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.package-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.package-period {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.package-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 32px;
}

.package-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.package-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.package-feature-item strong {
  color: var(--text-primary);
}

/* Feature Showcase */
.features {
  padding: 100px 0;
  background: #ffffff; /* White background */
  position: relative;
}

.features .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.features .section-header .hero-badge {
  margin-bottom: 20px;
}

.features .section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #121216; /* Dark heading */
  text-align: center;
  margin-bottom: 16px;
}

.features .section-header h2 span {
  background: linear-gradient(90deg, #ff0919 0%, #800080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.features .section-header p {
  color: #51515c; /* Darker gray subtitle */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  background: #ffffff; /* White card zemin */
  border: 1px solid rgba(0, 0, 0, 0.06); /* Soft dark border */
  border-radius: 20px;
  padding: 40px 24px 48px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Soft light shadow */
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(229, 9, 20, 0.05);
  background: #ffffff;
}

.feature-icon-outer {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-outer::before {
  display: none;
}

.feature-icon-glow {
  display: none;
}

.feature-icon-wrapper {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.feature-icon-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.feature-icon-outer.color-1 .feature-icon-wrapper svg { color: #ff334b; }
.feature-icon-outer.color-2 .feature-icon-wrapper svg { color: #f236bb; }
.feature-icon-outer.color-3 .feature-icon-wrapper svg { color: #aa3bff; }
.feature-icon-outer.color-4 .feature-icon-wrapper svg { color: #ff2c8f; }

.feature-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #121216; /* Dark heading inside card */
  margin-bottom: 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box p {
  color: #51515c; /* Darker gray description text */
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.feature-box-line {
  position: absolute;
  bottom: 24px;
  width: 40px;
  height: 3px;
  border-radius: 2px;
}

.feature-box-line.color-1 { background: #ff0919; }
.feature-box-line.color-2 { background: #e600a3; }
.feature-box-line.color-3 { background: #8a00e6; }
.feature-box-line.color-4 { background: #d6006e; }

/* Process Section */
.process {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(128, 0, 128, 0.08) 0%, transparent 60%);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.process .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.process .section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
}

.process .section-header h2 span {
  background: linear-gradient(90deg, #ff0919 0%, #800080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.process .section-header p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 8px;
}

.process-steps-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.process-step-card {
  background: rgba(24, 24, 31, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px 20px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.1);
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.step-badge.color-1 { background: #ff0919; }
.step-badge.color-2 { background: #e600a3; }
.step-badge.color-3 { background: #8a00e6; }
.step-badge.color-4 { background: #ff0919; }
.step-badge.color-5 { background: #d6006e; }

.step-icon-outer {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-outer::before {
  display: none;
}

.step-icon-glow {
  display: none;
}

.step-icon-wrapper {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.step-icon-wrapper img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.step-icon-outer.color-1 .step-icon-wrapper svg { color: #ff334b; }
.step-icon-outer.color-2 .step-icon-wrapper svg { color: #f236bb; }
.step-icon-outer.color-3 .step-icon-wrapper svg { color: #aa3bff; }
.step-icon-outer.color-4 .step-icon-wrapper svg { color: #ff334b; }
.step-icon-outer.color-5 .step-icon-wrapper svg { color: #ff2c8f; }

.process-step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-box-line {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 16px auto;
}

.step-box-line.color-1 { background: #ff0919; }
.step-box-line.color-2 { background: #e600a3; }
.step-box-line.color-3 { background: #8a00e6; }
.step-box-line.color-4 { background: #ff0919; }
.step-box-line.color-5 { background: #d6006e; }

.process-step-card p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.step-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.5rem;
  padding-top: 139px; /* Align chevron with middle of the 120px icon area */
}

/* Trust Bar */
.process-trust-bar {
  background: var(--primary-gradient); /* Red-purple gradient like the Hemen Başvur button */
  border: none;
  border-radius: 20px;
  padding: 24px 32px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.process-trust-bar .trust-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  flex-shrink: 0;
}

.process-trust-bar .trust-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff; /* White heading texts */
}

.process-trust-bar .trust-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85); /* Light description texts */
  line-height: 1.4;
  margin: 0;
}

.process-trust-bar .trust-btn {
  background: #ffffff !important;
  color: #e50914 !important; /* Standout color */
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-normal);
}

.process-trust-bar .trust-btn:hover {
  background: #f5f5f7 !important;
  color: #800080 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* CTA / Form Section */
.cta-section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 100px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.cta-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

.cta-phone-card {
  padding: 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.phone-details span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.phone-details h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.phone-details h3 a {
  color: var(--text-primary);
}

.phone-details h3 a:hover {
  color: var(--primary);
}

/* Success Form screen overlay style */
.form-success-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  animation: fadeIn var(--transition-normal) forwards;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(46, 213, 115, 0.1);
  border: 2px solid var(--status-success-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--status-success-text);
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.2);
}

.form-success-container h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.form-success-container p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 340px;
  margin: 0 auto 24px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #ffffff; /* White background */
}

.faq .section-header h2 {
  color: #121216; /* Dark heading */
}

.faq .section-header p {
  color: #51515c; /* Darker gray subtitle */
}

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

.faq-category-title {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #121216; /* Dark heading for white background */
  font-size: 1.25rem;
  font-weight: 700;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  letter-spacing: 0.5px;
}

.faq-item {
  background: #ffffff; /* White card zemin */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Soft dark border */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
  padding: 24px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
  color: #121216; /* Dark text */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
  padding: 0 24px;
  color: #51515c; /* Darker gray description text */
  font-size: 0.975rem;
}

.faq-answer-inner {
  padding-bottom: 24px;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

.faq-item.active .faq-answer-inner {
  border-top-color: rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

.faq-icon {
  transition: var(--transition-normal);
  color: #51515c;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.75rem;
  max-width: 700px;
  line-height: 1.4;
  margin-top: 8px;
  width: 100%;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero {
    padding: 120px 0 80px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .process-step-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 220px;
    max-width: 280px;
  }

  .step-arrow {
    display: none;
  }

  .process-trust-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
  }

  .trust-item {
    width: 100%;
  }

  .trust-btn {
    align-self: center;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

.packages-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* simple responsive header for demo */
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .process-step-card {
    width: 100%;
    max-width: 320px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3), 0 0 15px rgba(229, 9, 20, 0.1);
  outline: none;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5), var(--shadow-glow);
  background: var(--primary-gradient-hover);
}

.scroll-to-top-btn svg {
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-3px);
}

