:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: #050507;
  color: #f3f4f6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top, rgba(0, 71, 196, 0.2), transparent 40%),
    radial-gradient(circle at bottom right, rgba(208, 1, 27, 0.16), transparent 30%),
    #050507;
  overflow-x: hidden;
  min-height: 100vh;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal.hidden {
  display: none;
  opacity: 0;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: rgba(10, 12, 18, 0.98);
  border: 1px solid rgba(79, 156, 255, 0.25);
  border-radius: 28px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(79, 156, 255, 0.15);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #4f9cff;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 28px;
}

.modal-message {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
}

.modal-message span {
  color: #4f9cff;
  font-weight: 700;
}

.modal-info p {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-weight: 600;
}

.modal-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(79, 156, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 11, 20, 0.94), rgba(4, 6, 10, 0.98));
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 71, 196, 0.14), inset 0 1px 0 rgba(79, 156, 255, 0.12);
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  line-height: 1.05;
  background: linear-gradient(135deg, #7cbfff, #ff86c0);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-tagline,
.brand-subtext {
  margin: 4px 0 0;
}

.phone-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 65, 196, 0.16);
}

.phone-link strong {
  color: #7ecbff;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d0011b, #ff1f3a);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(208, 1, 27, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(208, 1, 27, 0.3);
  }
  50% {
    box-shadow: 0 4px 24px rgba(208, 1, 27, 0.5);
  }
}

main {
  margin-top: 32px;
  display: grid;
  gap: 40px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.96), rgba(7, 8, 12, 0.95));
  border: 1px solid rgba(79, 156, 255, 0.16);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(79, 156, 255, 0.25), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(255, 31, 78, 0.18), transparent 14%);
  opacity: 0.9;
  animation: glowSpot 12s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 28%;
  left: -30%;
  width: 65%;
  height: 160px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  transform: rotate(20deg);
  pointer-events: none;
  animation: shimmerLine 4.5s ease-in-out infinite;
}

.hero-copy {
  max-width: 600px;
  animation: fadeInUp 0.8s ease both;
}

.hero-image {
  animation: fadeIn 1s ease both 0.3s;
  display: grid;
  gap: 24px;
  width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.varta-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 25, 50, 0.98), rgba(14, 31, 60, 0.96));
  border: 1px solid rgba(79, 156, 255, 0.22);
  box-shadow: 0 28px 60px rgba(0, 54, 130, 0.22);
  overflow: hidden;
}

.varta-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(79, 156, 255, 0.18);
  filter: blur(18px);
}

.varta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #8cd2ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.varta-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.05;
  color: #ffffff;
}

.varta-card p {
  margin: 0 0 22px;
  color: #d3e6ff;
  line-height: 1.75;
}

.varta-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.varta-stats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c3dbff;
  font-size: 0.95rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: #4f9cff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.95s ease both;
}

.hero p {
  max-width: 100%;
  line-height: 1.78;
  margin: 22px 0 0;
  color: #dce6f5;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0041c4, #0066ff);
  box-shadow: 0 18px 36px rgba(0, 65, 196, 0.25);
  animation: pulseBtn 4s ease-in-out infinite;
}

.btn-secondary {
  color: #e8f1ff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #0f9d58, #17b86b);
  border: 1px solid rgba(15, 157, 88, 0.45);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #12a962, #29d488);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBtn {
  0%, 100% {
    box-shadow: 0 16px 30px rgba(0, 65, 196, 0.22);
  }
  50% {
    box-shadow: 0 22px 42px rgba(0, 102, 255, 0.28);
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes glowSpot {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.65;
    transform: translate(-46%, -54%) scale(1.05);
  }
}

@keyframes shimmerLine {
  from {
    transform: translateX(-130%) rotate(20deg);
  }
  to {
    transform: translateX(130%) rotate(20deg);
  }
}

.services, .location, .finder, .contact {
  padding: 28px;
  border-radius: 32px;
  background: rgba(12, 15, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 28px;
}

.service-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: riseUp 0.75s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0, 38, 96, 0.14);
  border-color: rgba(79, 156, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.service-card:nth-child(1) { animation-delay: 0.14s; }
.service-card:nth-child(2) { animation-delay: 0.19s; }
.service-card:nth-child(3) { animation-delay: 0.24s; }
.service-card:nth-child(4) { animation-delay: 0.29s; }
.service-card:nth-child(5) { animation-delay: 0.34s; }

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: #fff;
}

.service-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.map-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.6fr;
  align-items: start;
  margin-top: 26px;
}

.map-copy p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #cbd5e1;
  line-height: 1.75;
}

.location-top {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(79, 156, 255, 0.2);
}

.location-top h3 {
  margin: 0 0 12px;
  color: #4f9cff;
  font-size: 1.15rem;
  font-weight: 600;
}

.location-top p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.location-list li {
  position: relative;
  padding-left: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-list strong {
  color: #4f9cff;
}

.map-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.map-copy li {
  position: relative;
  padding-left: 24px;
  color: #e2e8f0;
}

.map-copy li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4f9cff;
}

.map-frame {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 156, 255, 0.2);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.finder-panel {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.finder-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.finder-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.finder-panel label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #a2cfff;
}

.finder-panel select,
.finder-panel input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(79, 156, 255, 0.22);
  background: rgba(79, 156, 255, 0.06);
  color: #ffffff;
  padding: 14px 18px;
  font: inherit;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.finder-panel select:hover,
.finder-panel select:focus,
.finder-panel input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(79, 156, 255, 0.12);
  border-color: rgba(79, 156, 255, 0.4);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 156, 255, 0.1);
}

.finder-panel select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f9cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 42px;
  cursor: pointer;
}

.finder-panel select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(79, 156, 255, 0.03);
}

.finder-panel select option {
  background: #0a0c12;
  color: #ffffff;
  padding: 12px;
}

.finder-panel select option:checked {
  background: linear-gradient(#0041c4, #0041c4);
  background-color: #0041c4 !important;
  color: #fff !important;
}

.finder-panel button {
  width: fit-content;
}

.finder-result {
  margin: 0;
  color: #d9e2ec;
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.35fr 0.95fr;
  margin-top: 24px;
  align-items: start;
  justify-items: center;
}

.contact-left {
  display: grid;
  gap: 22px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.contact-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  width: 100%;
  text-align: left;
}

.contact-info ul {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.contact-info li {
  position: relative;
  padding-left: 20px;
}

.contact-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4f9cff;
}

.testimonials {
  background: rgba(0, 71, 196, 0.05);
  padding: 50px 28px;
  border-radius: 20px;
  margin: 50px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  padding: 24px;
  background: rgba(10, 12, 18, 0.8);
  border: 1px solid rgba(79, 156, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(10, 12, 18, 0.95);
  border-color: rgba(79, 156, 255, 0.3);
  transform: translateY(-4px);
}

.testimonial-card.star-founder,
.testimonial-card.star-team {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.15), rgba(208, 1, 27, 0.08));
  border-color: rgba(79, 156, 255, 0.25);
}

.testimonial-card.star-founder:hover,
.testimonial-card.star-team:hover {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.2), rgba(208, 1, 27, 0.12));
  border-color: rgba(79, 156, 255, 0.4);
}

.testimonial-card.add-review {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.12), rgba(79, 156, 255, 0.06));
  border: 2px dashed rgba(79, 156, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  min-height: 200px;
}

.testimonial-card.add-review:hover {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.15), rgba(79, 156, 255, 0.08));
  border-color: rgba(79, 156, 255, 0.5);
}

.testimonial-card.add-review .testimonial-header {
  width: 100%;
}

.testimonial-card.add-review .testimonial-name {
  color: #4f9cff;
  font-weight: 700;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.testimonial-rating {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-name {
  font-weight: 600;
  color: #4f9cff;
  font-size: 0.95rem;
}

.testimonial-text {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
  font-size: 0.95rem;
}

.testimonial-date {
  color: #64748b;
  font-size: 0.85rem;
}

.testimonial-card.add-review .testimonial-date {
  margin-top: 8px;
  width: 100%;
}

.warranty-faq {
  padding: 50px 28px;
  margin: 50px 0;
}

.warranty-info {
  margin-bottom: 50px;
}

.warranty-info h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.warranty-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.1), rgba(208, 1, 27, 0.05));
  border: 1px solid rgba(79, 156, 255, 0.2);
  border-radius: 16px;
  text-align: center;
}

.warranty-card h4 {
  font-size: 1.1rem;
  color: #4f9cff;
  margin: 0 0 12px;
  font-weight: 600;
}

.warranty-duration {
  font-size: 2.2rem;
  color: #d0011b;
  font-weight: 800;
  margin: 12px 0;
}

.warranty-details {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 12px 0;
  line-height: 1.5;
}

.warranty-terms {
  color: #a2cfff;
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(79, 156, 255, 0.15);
}

.faq-section h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(79, 156, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: rgba(79, 156, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(79, 156, 255, 0.12);
}

.faq-toggle {
  color: #4f9cff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

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

.faq-answer p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section {
  margin-top: 50px;
  padding: 40px 28px;
  border-top: 1px solid rgba(79, 156, 255, 0.2);
  background: rgba(10, 12, 18, 0.5);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-col {
  display: grid;
  gap: 14px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #4f9cff;
  font-weight: 600;
}

.footer-col p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-phone,
.footer-whatsapp {
  padding: 12px;
  border-radius: 12px;
  background: rgba(79, 156, 255, 0.08);
  border: 1px solid rgba(79, 156, 255, 0.15);
}

.footer-phone a,
.footer-whatsapp a {
  color: #4f9cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-phone a:hover,
.footer-whatsapp a:hover {
  color: #a2cfff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-col li {
  color: #cbd5e1;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.footer-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4f9cff;
}

.footer-certified {
  padding-top: 12px;
  border-top: 1px solid rgba(79, 156, 255, 0.15);
  color: #a2cfff;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(79, 156, 255, 0.15);
  text-align: center;
  color: #a2cfff;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom p {
  margin: 8px 0;
}

/* ============================================================
   MOBİL RESPONSIVE – Media Queries
   ============================================================ */

/* --- Tablet: 768px ve altı --- */
@media (max-width: 768px) {

  /* Topbar */
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
  }

  .brand {
    gap: 14px;
    flex-wrap: wrap;
  }

  .brand-text h1 {
    font-size: 1.5rem;
  }

  .phone-link {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  /* Hero: tek sütun */
  .hero {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    border-radius: 28px;
    gap: 28px;
  }

  .hero h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    letter-spacing: -0.02em;
  }

  .hero p {
    font-size: 0.97rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .varta-card {
    max-width: 100%;
  }

  .varta-card h3 {
    font-size: 1.5rem;
  }

  /* Services */
  .services, .location, .finder, .contact {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Map */
  .map-card {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 280px;
  }

  .map-frame iframe {
    height: 280px;
  }

  /* Finder */
  .finder-inputs {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Testimonials */
  .testimonials {
    padding: 32px 16px;
    margin: 32px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Warranty & FAQ */
  .warranty-faq {
    padding: 32px 16px;
    margin: 32px 0;
  }

  .warranty-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
    text-align: left;
  }

  .faq-item.active .faq-answer {
    padding: 16px 18px;
  }

  /* Section headers */
  .section-header h2 {
    font-size: clamp(1.35rem, 5vw, 1.9rem);
  }

  /* Modal */
  .modal-content {
    border-radius: 20px;
    width: 95%;
  }

  .modal-header {
    padding: 18px 20px;
  }

  .modal-header h3 {
    font-size: 1.15rem;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-section {
    padding: 28px 16px;
    margin-top: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Page shell padding */
  .page-shell {
    padding: 12px;
  }

  main {
    gap: 24px;
    margin-top: 20px;
  }
}

/* --- Küçük Mobil: 480px ve altı --- */
@media (max-width: 480px) {

  .brand-text h1 {
    font-size: 1.25rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .hero {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .hero h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
  }

  .contact-quick {
    grid-template-columns: 1fr;
  }

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

  .warranty-duration {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.85rem;
    padding: 14px 14px;
  }

  .varta-stats {
    grid-template-columns: 1fr;
  }

  .services, .location, .finder, .contact {
    border-radius: 16px;
  }

  .topbar {
    border-radius: 12px;
  }
}

/* --- Dokunmatik cihazlar: hover animasyonlarını devre dışı --- */
@media (hover: none) {
  .btn:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .phone-link:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ============================================================
   SABİT YÜZEN BUTONLAR (WhatsApp + Ara)
   ============================================================ */

.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, width 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

.float-btn:active {
  transform: translateY(0) scale(0.98);
}

.float-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Ara butonu — mavi */
.float-call {
  background: linear-gradient(135deg, #0041c4, #0066ff);
  box-shadow: 0 8px 28px rgba(0, 65, 196, 0.45);
  animation: floatPulseBlue 3s ease-in-out infinite;
}

.float-call:hover {
  box-shadow: 0 14px 36px rgba(0, 65, 196, 0.55);
}

/* WhatsApp butonu — yeşil */
.float-whatsapp {
  background: linear-gradient(135deg, #0f9d58, #17b86b);
  box-shadow: 0 8px 28px rgba(15, 157, 88, 0.45);
  animation: floatPulseGreen 3s ease-in-out infinite 1.5s;
}

.float-whatsapp:hover {
  box-shadow: 0 14px 36px rgba(15, 157, 88, 0.55);
}

/* Nefes alan pulse animasyonları */
@keyframes floatPulseBlue {
  0%, 100% { box-shadow: 0 8px 28px rgba(0, 65, 196, 0.45); }
  50%       { box-shadow: 0 10px 36px rgba(0, 102, 255, 0.65); }
}

@keyframes floatPulseGreen {
  0%, 100% { box-shadow: 0 8px 28px rgba(15, 157, 88, 0.45); }
  50%       { box-shadow: 0 10px 36px rgba(23, 184, 107, 0.65); }
}

/* Mobilde daha kompakt — sadece ikon görünür, hover'da genişler */
@media (max-width: 768px) {
  .float-buttons {
    bottom: 20px;
    right: 16px;
    gap: 12px;
  }

  .float-btn {
    padding: 14px 16px;
    border-radius: 50px;
    max-width: 54px; /* sadece ikon */
  }

  .float-label {
    display: none;
  }

  .float-icon {
    font-size: 1.35rem;
  }

  .float-btn:active {
    max-width: 180px;
    padding: 14px 20px;
  }

  .float-btn:active .float-label {
    display: inline;
  }
}

/* ============================================================
   CANLI & ÇARPICI TASARIM YÜKSELTMESİ
   ============================================================ */

/* --- Yeni font: daha karakterli --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

:root {
  --blue-glow: rgba(0, 102, 255, 0.55);
  --green-glow: rgba(23, 184, 107, 0.55);
  --red-glow: rgba(208, 1, 27, 0.45);
  --gold: #ffd166;
}

/* --- Body arka plan daha dramatik --- */
body {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(0, 80, 230, 0.28) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(208, 1, 27, 0.2) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 50, 150, 0.15) 0%, transparent 40%),
    #030406;
}

/* --- BTN: Çok daha canlı, 3D hissi --- */
.btn-primary {
  background: linear-gradient(135deg, #0052ff 0%, #003dd4 50%, #0066ff 100%);
  box-shadow:
    0 4px 0 #002299,
    0 8px 24px rgba(0, 82, 255, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
  transition: all 0.18s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a66ff 0%, #0052ff 50%, #3380ff 100%);
  box-shadow:
    0 6px 0 #002299,
    0 14px 36px rgba(0, 102, 255, 0.65),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
  box-shadow: 0 1px 0 #002299, 0 4px 12px rgba(0, 82, 255, 0.4);
  transform: translateY(2px) scale(0.99);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #0f9d58 0%, #0d8a4e 50%, #17b86b 100%);
  box-shadow:
    0 4px 0 #096b38,
    0 8px 24px rgba(15, 157, 88, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.18);
  border: none;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #14b868 0%, #0f9d58 50%, #29d488 100%);
  box-shadow:
    0 6px 0 #096b38,
    0 14px 36px rgba(23, 184, 107, 0.65),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-3px) scale(1.02);
}

.btn-whatsapp:active {
  box-shadow: 0 1px 0 #096b38, 0 4px 12px rgba(15, 157, 88, 0.4);
  transform: translateY(2px) scale(0.99);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.18s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-3px) scale(1.02);
}

/* --- Hero daha etkileyici --- */
.hero {
  background: linear-gradient(160deg,
    rgba(0, 20, 60, 0.98) 0%,
    rgba(5, 10, 25, 0.97) 60%,
    rgba(10, 5, 15, 0.96) 100%);
  border: 1px solid rgba(79, 156, 255, 0.22);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(79, 156, 255, 0.15);
}

.hero h2 {
  background: linear-gradient(135deg, #ffffff 0%, #b8d4ff 60%, #7cb8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Badge daha parlak --- */
.badge {
  background: linear-gradient(135deg, #cc0018, #ff1f3a, #ff3d52);
  box-shadow:
    0 4px 0 #8b0010,
    0 6px 20px rgba(208, 1, 27, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: pulse-badge 1.8s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 4px 0 #8b0010, 0 6px 20px rgba(208, 1, 27, 0.45);
  }
  50% {
    box-shadow: 0 4px 0 #8b0010, 0 8px 32px rgba(255, 31, 58, 0.75);
  }
}

/* --- Service kartlar daha parlak --- */
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease,
              background 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 30px 60px rgba(0, 40, 110, 0.22),
    0 0 0 1px rgba(79, 156, 255, 0.3),
    inset 0 1px 0 rgba(79, 156, 255, 0.1);
  border-color: rgba(79, 156, 255, 0.35);
  background: rgba(79, 156, 255, 0.07);
}

.service-card h3 {
  font-size: 1.08rem;
  background: linear-gradient(135deg, #ffffff, #c8deff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Varta kart daha canlı --- */
.varta-card {
  background: linear-gradient(160deg,
    rgba(0, 25, 65, 0.99) 0%,
    rgba(5, 18, 48, 0.97) 100%);
  border: 1px solid rgba(79, 156, 255, 0.3);
  box-shadow:
    0 32px 70px rgba(0, 50, 140, 0.3),
    inset 0 1px 0 rgba(79, 156, 255, 0.2);
}

.varta-badge {
  background: rgba(79, 156, 255, 0.15);
  border: 1px solid rgba(79, 156, 255, 0.3);
  color: #a8d4ff;
}

/* --- Yıldızlar daha parlak --- */
.testimonial-rating {
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.6));
  letter-spacing: 2px;
}

/* --- Testimonial kartlar daha derin --- */
.testimonial-card {
  background: rgba(8, 10, 18, 0.9);
  border: 1px solid rgba(79, 156, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 24px 50px rgba(0, 30, 90, 0.3),
    0 0 0 1px rgba(79, 156, 255, 0.25),
    inset 0 1px 0 rgba(79, 156, 255, 0.08);
  border-color: rgba(79, 156, 255, 0.28);
}

/* --- FAQ butonlar daha canlı --- */
.faq-question {
  background: rgba(79, 156, 255, 0.06);
  border-bottom: 1px solid rgba(79, 156, 255, 0.1);
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(79, 156, 255, 0.14);
  padding-left: 28px;
}

.faq-item.active .faq-question {
  background: rgba(79, 156, 255, 0.12);
  color: #a8d4ff;
}

/* --- Warranty kartlar --- */
.warranty-card {
  background: linear-gradient(160deg,
    rgba(0, 30, 80, 0.7) 0%,
    rgba(208, 1, 27, 0.06) 100%);
  border: 1px solid rgba(79, 156, 255, 0.22);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(79, 156, 255, 0.1);
  transition: all 0.28s ease;
}

.warranty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 40, 110, 0.25), inset 0 1px 0 rgba(79, 156, 255, 0.15);
  border-color: rgba(79, 156, 255, 0.35);
}

.warranty-duration {
  background: linear-gradient(135deg, #ff2040, #ff5070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 32, 64, 0.4));
  font-size: 2.6rem;
}

/* --- Bölüm başlıkları daha etkileyici --- */
.section-header h2 {
  background: linear-gradient(135deg, #ffffff 0%, #c8deff 70%, #90beff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  color: #5aabff;
  letter-spacing: 0.2em;
  text-shadow: 0 0 20px rgba(79, 156, 255, 0.4);
}

/* --- Phone link header --- */
.phone-link {
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(79, 156, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.15), inset 0 1px 0 rgba(79, 156, 255, 0.12);
  transition: all 0.2s ease;
}

.phone-link:hover {
  background: rgba(0, 82, 255, 0.18);
  border-color: rgba(79, 156, 255, 0.45);
  box-shadow: 0 8px 28px rgba(0, 82, 255, 0.3), inset 0 1px 0 rgba(79, 156, 255, 0.2);
  transform: translateY(-2px);
}

.phone-link strong {
  color: #7ecbff;
  text-shadow: 0 0 16px rgba(126, 203, 255, 0.35);
}

/* --- Topbar daha parlak --- */
.topbar {
  background: linear-gradient(135deg,
    rgba(5, 10, 22, 0.97) 0%,
    rgba(8, 14, 30, 0.98) 100%);
  border: 1px solid rgba(79, 156, 255, 0.18);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(79, 156, 255, 0.1);
}

/* --- Yüzen butonlar daha çarpıcı --- */
.float-call {
  background: linear-gradient(135deg, #0052ff 0%, #003dd4 50%, #0066ff 100%);
  box-shadow:
    0 4px 0 #002299,
    0 8px 28px rgba(0, 82, 255, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.float-call:hover {
  background: linear-gradient(135deg, #1a66ff, #0052ff);
  box-shadow:
    0 6px 0 #002299,
    0 14px 40px rgba(0, 102, 255, 0.75),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-4px) scale(1.04);
}

.float-whatsapp {
  background: linear-gradient(135deg, #0f9d58 0%, #0d8a4e 50%, #17b86b 100%);
  box-shadow:
    0 4px 0 #096b38,
    0 8px 28px rgba(15, 157, 88, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.float-whatsapp:hover {
  background: linear-gradient(135deg, #14b868, #0f9d58);
  box-shadow:
    0 6px 0 #096b38,
    0 14px 40px rgba(23, 184, 107, 0.75),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-4px) scale(1.04);
}

@keyframes floatPulseBlue {
  0%, 100% {
    box-shadow: 0 4px 0 #002299, 0 8px 28px rgba(0, 82, 255, 0.55);
  }
  50% {
    box-shadow: 0 4px 0 #002299, 0 12px 40px rgba(0, 102, 255, 0.8);
  }
}

@keyframes floatPulseGreen {
  0%, 100% {
    box-shadow: 0 4px 0 #096b38, 0 8px 28px rgba(15, 157, 88, 0.55);
  }
  50% {
    box-shadow: 0 4px 0 #096b38, 0 12px 40px rgba(23, 184, 107, 0.8);
  }
}

/* --- Harita çerçevesi --- */
.map-frame {
  border: 1px solid rgba(79, 156, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 40, 120, 0.2);
}

/* --- Footer daha temiz --- */
.footer-section {
  background: rgba(5, 8, 16, 0.8);
  border-top: 1px solid rgba(79, 156, 255, 0.15);
}

.footer-phone, .footer-whatsapp {
  background: rgba(79, 156, 255, 0.07);
  border: 1px solid rgba(79, 156, 255, 0.18);
  transition: all 0.2s ease;
}

.footer-phone:hover, .footer-whatsapp:hover {
  background: rgba(79, 156, 255, 0.12);
  border-color: rgba(79, 156, 255, 0.3);
  transform: translateY(-2px);
}

/* --- Scroll reveal animasyonu --- */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.testimonial-card,
.warranty-card,
.faq-item {
  animation-fill-mode: both;
}

/* --- Seçim kutuları daha canlı --- */
.finder-panel select:focus,
.finder-panel select:hover {
  background: rgba(79, 156, 255, 0.1);
  border-color: rgba(79, 156, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(79, 156, 255, 0.15), 0 4px 16px rgba(0, 82, 255, 0.2);
}

/* --- Quick contact kartlar --- */
.quick-card {
  background: rgba(79, 156, 255, 0.06);
  border: 1px solid rgba(79, 156, 255, 0.15);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(79, 156, 255, 0.08);
}

.quick-card:hover {
  background: rgba(79, 156, 255, 0.1);
  border-color: rgba(79, 156, 255, 0.28);
  transform: translateY(-2px);
}

/* --- Add review kart --- */
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.18), rgba(79, 156, 255, 0.08));
  border: 1px solid rgba(79, 156, 255, 0.3);
  color: #7ecbff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.15);
}

.review-link:hover {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.28), rgba(79, 156, 255, 0.14));
  border-color: rgba(79, 156, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.25);
  color: #a8d4ff;
}

/* --- Çift nokta düzeltmesi: contact-info li --- */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.contact-info li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4f9cff;
  font-weight: 700;
}

.email-link, .address-link {
  color: #4f9cff;
  text-decoration: none;
  transition: color 0.2s;
}

.email-link:hover, .address-link:hover {
  color: #a8d4ff;
  text-decoration: underline;
}
