/* garansi.css - Kaca Film Theme - COMPLETE VERSION */
:root {
  --primary-color: #e63946;
  --dark-color: #0f2027;
  --light-color: #f1faee;
  --accent-color: #a8dadc;
  --text-color: #ffffff;
  --secondary-text: #9ca3af;
  --dark-color-secondary: #1a2432;
  --film-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  --film-accent: #e63946;
  --film-light: #a8dadc;
  --film-dark: #0f2027;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --info-color: #17a2b8;
  --border-radius: 16px;
  --shadow: 0 20px 60px rgba(15, 32, 39, 0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark-color);
  color: var(--text-color);
  min-height: 100vh;
  line-height: 1.6;
}

/* Enhanced Container */
.garansi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 60px) clamp(15px, 3vw, 20px);
  min-height: 80vh;
}

/* Modern Hero Section */
.hero {
  position: relative;
  height: clamp(250px, 40vh, 400px);
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
  color: var(--film-light);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--film-accent);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--text-color);
}

.breadcrumb span {
  color: var(--secondary-text);
}

/* Enhanced Form Wrapper */
.cpf1-form-wrap {
  background: var(--dark-color-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: min(500px, 90%);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(168, 218, 220, 0.2);
  backdrop-filter: blur(15px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cpf1-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--film-accent), var(--film-light), var(--accent-color));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

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

.cpf1-form-wrap:hover {
  box-shadow: 0 25px 80px rgba(15, 32, 39, 0.4);
  transform: translateY(-8px);
  border-color: rgba(168, 218, 220, 0.5);
}

.cpf1-form h4 {
  color: var(--film-light);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

/* Enhanced Form Elements */
.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.cpf1-label {
  display: block;
  color: var(--film-light);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cpf1-input, .cpf1-textarea, .cpf1-select {
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid rgba(168, 218, 220, 0.3);
  padding: 1.2rem 1.5rem;
  width: 100%;
  transition: var(--transition);
  background: rgba(15, 32, 39, 0.6);
  color: var(--text-color);
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.cpf1-input::placeholder, .cpf1-textarea::placeholder {
  color: var(--secondary-text);
}

.cpf1-input:focus, .cpf1-textarea:focus, .cpf1-select:focus {
  border-color: var(--film-accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
  background: rgba(15, 32, 39, 0.8);
  transform: translateY(-2px);
}

.cpf1-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cpf1-help {
  display: block;
  color: var(--film-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Enhanced Button */
.cpf1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  background: linear-gradient(135deg, var(--film-accent), #c1121f);
  color: white;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.cpf1-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cpf1-btn:hover::before {
  left: 100%;
}

.cpf1-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.4);
  background: linear-gradient(135deg, #c1121f, var(--film-accent));
}

.cpf1-btn:active {
  transform: translateY(-1px);
}

.cpf1-btn-claim {
  background: linear-gradient(135deg, var(--success-color), #1e7e34);
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.cpf1-btn-claim:hover {
  background: linear-gradient(135deg, #1e7e34, var(--success-color));
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Result Card */
.cpf1-result-card {
  max-width: min(600px, 90%);
  margin: 2rem auto;
  background: var(--dark-color-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(168, 218, 220, 0.2);
  position: relative;
  overflow: hidden;
}

.cpf1-result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--film-accent), var(--film-light));
}

.cpf1-result-card > div:first-child {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--film-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Info List */
.cpf1-info-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cpf1-info-list dt {
  color: var(--film-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cpf1-info-list dd {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(168, 218, 220, 0.1);
}

/* Status Section */
.cpf1-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cpf1-status-aktif {
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.cpf1-status-expired {
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

.cpf1-status .icon {
  font-size: 2.2rem;
}

.cpf1-badge {
  background: var(--film-accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.cpf1-status-expired .cpf1-badge {
  background: var(--error-color);
}

/* Claim Section */
.cpf1-claim-section {
  background: rgba(168, 218, 220, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(168, 218, 220, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cpf1-claim-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.cpf1-claim-info i {
  color: var(--warning-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.cpf1-claim-info strong {
  color: var(--text-color);
  display: block;
  margin-bottom: 0.3rem;
}

.cpf1-claim-info p {
  color: var(--film-light);
  margin: 0;
}

.cpf1-btn-claim {
  width: auto;
  padding: 0.8rem 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Customer Info Section */
.cpf1-customer-info {
  background: rgba(15, 32, 39, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(168, 218, 220, 0.2);
}

.cpf1-customer-info h5 {
  color: var(--film-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(168, 218, 220, 0.2);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cpf1-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.cpf1-info-item {
  display: flex;
  flex-direction: column;
}

.cpf1-info-item label {
  color: var(--film-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cpf1-info-item span {
  color: var(--text-color);
  font-weight: 500;
}

/* Radio Group */
.cpf1-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cpf1-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(168, 218, 220, 0.2);
  transition: all 0.3s ease;
  background: rgba(15, 32, 39, 0.5);
}

.cpf1-radio:hover {
  background: rgba(168, 218, 220, 0.1);
  border-color: rgba(168, 218, 220, 0.4);
}

.cpf1-radio input[type="radio"] {
  display: none;
}

.cpf1-radio-checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(168, 218, 220, 0.5);
  border-radius: 50%;
  margin-right: 0.8rem;
  position: relative;
  transition: all 0.3s ease;
}

.cpf1-radio input[type="radio"]:checked + .cpf1-radio-checkmark {
  border-color: var(--film-accent);
  background: var(--film-accent);
}

.cpf1-radio input[type="radio"]:checked + .cpf1-radio-checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

/* Terms & Conditions */
.cpf1-terms-section {
  background: rgba(15, 32, 39, 0.7);
  border-radius: var(--border-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin: 3rem auto;
  border: 1px solid rgba(168, 218, 220, 0.2);
  backdrop-filter: blur(10px);
  max-width: min(800px, 90%);
}

.cpf1-terms-section h3 {
  color: var(--film-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.cpf1-terms-content {
  background: rgba(15, 32, 39, 0.5);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(168, 218, 220, 0.1);
}

.cpf1-terms-list {
  list-style: none;
  counter-reset: terms-counter;
}

.cpf1-terms-list li {
  counter-increment: terms-counter;
  margin-bottom: 1.2rem;
  padding-left: 3rem;
  position: relative;
  color: var(--text-color);
  line-height: 1.6;
}

.cpf1-terms-list li::before {
  content: counter(terms-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--film-accent), var(--film-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-color);
}

.cpf1-terms-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--warning-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* reCAPTCHA Container */
.cpf1-recaptcha-container {
  background: rgba(15, 32, 39, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(168, 218, 220, 0.2);
  text-align: center;
}

.cpf1-recaptcha-container > div {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.cpf1-recaptcha-help {
  color: var(--film-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Enhanced Checkbox */
.cpf1-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 1.2rem;
  border-radius: 12px;
  border: 2px solid rgba(168, 218, 220, 0.2);
  transition: var(--transition);
  background: rgba(15, 32, 39, 0.5);
  margin: 1.5rem 0;
  backdrop-filter: blur(5px);
}

.cpf1-checkbox:hover {
  background: rgba(168, 218, 220, 0.1);
  border-color: rgba(168, 218, 220, 0.4);
  transform: translateY(-2px);
}

.cpf1-checkbox input[type="checkbox"] {
  display: none;
}

.cpf1-checkbox-checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(168, 218, 220, 0.5);
  border-radius: 6px;
  margin-right: 1rem;
  margin-top: 0.1rem;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  background: rgba(15, 32, 39, 0.8);
}

.cpf1-checkbox input[type="checkbox"]:checked + .cpf1-checkbox-checkmark {
  border-color: var(--film-accent);
  background: var(--film-accent);
  animation: checkmark 0.3s ease;
}

@keyframes checkmark {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.cpf1-checkbox input[type="checkbox"]:checked + .cpf1-checkbox-checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.cpf1-checkbox-label {
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}

.cpf1-checkbox-label a {
  color: var(--film-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.cpf1-checkbox-label a:hover {
  color: var(--film-accent);
  border-bottom-color: var(--film-accent);
}

/* Enhanced Upload Area */
.cpf1-upload-area {
  border: 3px dashed rgba(168, 218, 220, 0.3);
  border-radius: var(--border-radius);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(15, 32, 39, 0.3);
  position: relative;
  overflow: hidden;
}

.cpf1-upload-area:hover {
  border-color: var(--film-accent);
  background: rgba(15, 32, 39, 0.5);
  transform: translateY(-2px);
}

.cpf1-upload-dragover {
  border-color: var(--film-accent);
  background: rgba(230, 57, 70, 0.15);
  animation: pulse-border 1s ease infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: var(--film-accent); }
  50% { border-color: var(--film-light); }
}

.cpf1-upload-area i {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--film-light);
  margin-bottom: 1.5rem;
  display: block;
  transition: var(--transition);
}

.cpf1-upload-area:hover i {
  color: var(--film-accent);
  transform: scale(1.1);
}

.cpf1-upload-area p {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.cpf1-upload-area small {
  color: var(--film-light);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Enhanced Preview Grid */
.cpf1-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.cpf1-preview-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid rgba(168, 218, 220, 0.2);
  transition: var(--transition);
  background: rgba(15, 32, 39, 0.5);
}

.cpf1-preview-item:hover {
  transform: scale(1.05);
  border-color: var(--film-accent);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.cpf1-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cpf1-preview-item:hover img {
  transform: scale(1.1);
}

.cpf1-preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: var(--error-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.cpf1-preview-item:hover .cpf1-preview-remove {
  opacity: 1;
  transform: scale(1);
}

.cpf1-preview-remove:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* Success Card */
.cpf1-success-card {
  max-width: min(600px, 90%);
  margin: 2rem auto;
  background: var(--dark-color-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(168, 218, 220, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cpf1-success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--success-color), var(--film-light));
}

.cpf1-success-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--success-color);
  margin-bottom: 1.5rem;
  animation: success-pulse 2s ease-in-out infinite;
}

@keyframes success-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cpf1-success-card h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

.cpf1-success-card p {
  color: var(--film-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.cpf1-claim-number {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.cpf1-claim-number strong {
  color: var(--success-color);
  font-size: 1.2rem;
}

.cpf1-next-steps {
  background: rgba(168, 218, 220, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}

.cpf1-next-steps h4 {
  color: var(--film-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cpf1-next-steps ul {
  color: var(--text-color);
  padding-left: 1.5rem;
  margin: 0;
}

.cpf1-next-steps li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}



/* Alert Styles */
.cpf1-alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.cpf1-alert-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
}

.cpf1-alert-error i {
  color: #f8d7da;
}

.cpf1-alert-success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #d4edda;
}

.cpf1-alert-success i {
  color: #d4edda;
}

/* Service Container */
.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-title p {
  color: var(--secondary-text);
  max-width: min(700px, 90%);
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.service-card {
  background-color: var(--dark-color-secondary);
  border-radius: var(--border-radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #c1121f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #c1121f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-card ul li {
  color: var(--secondary-text);
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
  transition: var(--transition);
}

.service-card ul li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--transition);
}

.service-card:hover ul li {
  color: white;
  transform: translateX(5px);
}

.service-card:hover ul li:before {
  transform: scale(1.2);
  color: var(--accent-color);
}

/* Service Process */
.service-process {
  background-color: var(--dark-color-secondary);
  border-radius: var(--border-radius);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #c1121f, var(--accent-color));
}

.service-process h3 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #c1121f, var(--accent-color));
  z-index: 1;
}

.step {
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.step:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #c1121f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--dark-color-secondary);
  box-shadow: 0 0 0 3px var(--primary-color);
  transition: var(--transition);
  position: relative;
  z-index: 3;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 0 3px var(--primary-color), 0 8px 25px rgba(230, 57, 70, 0.4);
}

.step h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.step p {
  color: var(--secondary-text);
  line-height: 1.5;
  font-size: 0.95rem;
  transition: var(--transition);
}

.step:hover p {
  color: white;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .garansi-container {
    padding: 30px 15px;
  }

  .cpf1-form-wrap {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }

  .cpf1-input, .cpf1-textarea, .cpf1-select {
    padding: 1rem 1.2rem;
  }

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

  .cpf1-terms-section {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }

  .cpf1-terms-content {
    padding: 1.5rem;
  }

  .cpf1-terms-list li {
    padding-left: 2.5rem;
    margin-bottom: 1rem;
  }

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

  .cpf1-checkbox {
    padding: 1rem;
    align-items: flex-start;
  }

  .cpf1-checkbox-checkmark {
    margin-top: 0.2rem;
  }

  .cpf1-claim-section {
    flex-direction: column;
    text-align: center;
  }

  .cpf1-claim-info {
    flex-direction: column;
    text-align: center;
  }

  .cpf1-info-grid {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .service-container {
    padding: 40px 15px;
  }

  .service-process {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {

  .cpf1-form-wrap {
    padding: 1.5rem 1.2rem;
    margin: 1.5rem auto;
  }

  .cpf1-input, .cpf1-textarea, .cpf1-select {
    padding: 0.9rem 1rem;
  }

  .cpf1-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .cpf1-terms-section {
    padding: 1.5rem 1rem;
  }

  .cpf1-terms-content {
    padding: 1.2rem;
  }

  .cpf1-terms-list li {
    padding-left: 2rem;
    font-size: 0.9rem;
  }

  .cpf1-preview-grid {
    grid-template-columns: 1fr;
  }

  .cpf1-upload-area {
    padding: 1.5rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --dark-color-secondary: #1a1f2e;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.step {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
/* Simple Hero Section */



/* Steps Section */
.cpf1-steps-section {
    background: var(--dark-color-secondary);
    border-radius: var(--border-radius);
    padding: clamp(2rem, 5vw, 3rem);
    margin: 3rem auto;
    border: 1px solid rgba(168, 218, 220, 0.2);
}

.cpf1-steps-section h3 {
    text-align: center;
    color: var(--film-light);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cpf1-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cpf1-step-card {
    background: rgba(15, 32, 39, 0.6);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(168, 218, 220, 0.1);
    transition: var(--transition);
    position: relative;
}

.cpf1-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--film-accent);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.cpf1-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--film-accent), var(--film-light));
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.cpf1-step-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cpf1-step-card p {
    color: var(--film-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Quick Info Cards */
.cpf1-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cpf1-info-card {
    background: rgba(168, 218, 220, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(168, 218, 220, 0.2);
}

.cpf1-info-card i {
    font-size: 2rem;
    color: var(--film-accent);
    margin-bottom: 1rem;
}

.cpf1-info-card h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cpf1-info-card p {
    color: var(--film-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Compact Form */
.cpf1-compact-form {
    max-width: 500px;
    margin: 0 auto;
}

.cpf1-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cpf1-form-header h3 {
    color: var(--film-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cpf1-form-header p {
    color: var(--secondary-text);
    font-size: 0.95rem;
}
