:root {
  --color-primary: #00c2c7;
  --color-primary-soft: rgba(0, 194, 199, 0.1);
  --color-secondary: #ffcb2b;
  --color-danger: #ff4b4b;
  --color-dark: #111827;
  --color-light: #f9fafb;
  --color-glass-bg: rgba(255, 255, 255, 0.8);
  --color-border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: var(--color-dark);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
}

.main-footer {
  flex-shrink: 0;
}

/* Navbar */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: linear-gradient(90deg, rgba(0, 194, 199, 0.04), rgba(15, 23, 42, 0.02));
  border-bottom: 1px solid var(--color-border-soft);
}

.glass-nav .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0%, #00c2c7 0%, #014f86 85%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.94rem;
  padding-inline: 0.95rem;
  color: #0f172a;
}

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

.btn-emergency {
  background: linear-gradient(135deg, #ff4b4b, #b91c1c);
  color: #fff;
  border-radius: 999px;
  border: none;
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.45);
}

.btn-emergency strong {
  font-size: 0.85rem;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide-item {
  position: relative;
  height: min(74vh, 640px);
  min-height: 420px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 194, 199, 0.55), transparent 55%),
              radial-gradient(circle at bottom right, rgba(185, 28, 28, 0.55), transparent 55%),
              linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9));
}

.hero-content {
  position: relative;
  max-width: 620px;
  color: #f9fafb;
}

.glass-card {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.96));
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-content.glass-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(18px);
}

.hero-badge {
  background-color: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: #e5e7eb;
}

.hero-badge i {
  color: var(--color-primary);
}

.hero-content h1,
.hero-content h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

.hero-content h1 span,
.hero-content h2 span {
  color: var(--color-secondary);
}

.hero-content p {
  max-width: 32rem;
  font-size: 0.96rem;
  color: #e5e7eb;
}

.hero-actions .btn {
  font-weight: 600;
  border-radius: 999px;
}

.btn-primary-main {
  background: linear-gradient(135deg, var(--color-primary), #0284c7);
  border: none;
  color: #fff;
}

.btn-primary-main:hover {
  opacity: 0.95;
  color: #fff;
}

.btn-outline-main {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.6);
}

.btn-outline-main:hover {
  border-color: #facc15;
  color: #facc15;
}

.hero-meta span {
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
}

/* Carousel controls */
.carousel-control-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

.section-light {
  background-color: #f3f4f6;
}

.section-white {
  background-color: #ffffff;
}

.section-header h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-header h2 span {
  color: var(--color-primary);
}

/* Service query */
.service-query {
  border-radius: var(--radius-xl);
}

.service-query .form-label i {
  color: var(--color-primary);
  margin-right: 0.25rem;
}

/* Device cards */
.device-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(0, 194, 199, 0.18), rgba(15, 23, 42, 0.02));
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.device-card:hover {
  transform: translateY(-4px) rotate3d(1, 0.5, 0, 1deg);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.25);
  border-color: rgba(56, 189, 248, 0.9);
}

.device-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.device-card-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.device-card-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.device-card-title i {
  color: var(--color-primary);
}

.device-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Brands */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.brand-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.99));
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.14), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(248, 113, 113, 0.14), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.brand-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0%, #0ea5e9 0%, #1d4ed8 90%);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.brand-card-name {
  font-weight: 700;
  font-size: 0.98rem;
}

.brand-card > div:last-child {
  position: relative;
  z-index: 1;
}

.brand-card .small {
  font-size: 0.8rem;
}

/* Slight hover effect */
@media (hover: hover) {
  .brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
    border-color: rgba(56, 189, 248, 0.85);
  }
}

/* Price table */
.table thead th {
  border-bottom-width: 1px;
  border-color: rgba(148, 163, 184, 0.6) !important;
}

.table tbody td {
  font-size: 0.9rem;
}

/* Arıza accordion */
.ariza-accordion-item {
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
}

.ariza-accordion-header {
  padding: 0.9rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ariza-accordion-header-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.ariza-accordion-header-title span.code-pill {
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 194, 199, 0.12);
  color: #0f766e;
}

.ariza-accordion-body {
  padding: 0 1rem 0.9rem;
  display: none;
  font-size: 0.9rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.ariza-accordion-item.open .ariza-accordion-body {
  display: block;
}

/* Reviews */
.reviews-wrapper {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 1.1rem 1.2rem 1.2rem;
}

.reviews-header .google-icon {
  font-size: 1.6rem;
  color: #4285f4;
}

.reviews-header strong {
  font-size: 0.95rem;
}

.reviews-header span.text-muted {
  font-size: 0.82rem;
}

.reviews-slider {
  position: relative;
  min-height: 150px;
}

.review-card {
  display: none;
}

.review-card.active {
  display: block;
}

.review-card-inner {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.95rem 1rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0%, #22c55e 0%, #16a34a 90%);
  color: #fff;
  font-weight: 600;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.8rem;
}

.review-stars i {
  margin-right: 1px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  margin: 0 3px;
  background-color: rgba(148, 163, 184, 0.9);
}

.reviews-dots button.active {
  background-color: #0ea5e9;
  transform: scale(1.25);
}


/* CTA section *//* CTA section */
.section-cta.section-gradient {
  background: radial-gradient(circle at top left, #0ea5e9, #1e293b);
  color: #e5e7eb;
}

.section-cta h2 span {
  color: var(--color-secondary);
}

.btn-light-main {
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
}

/* Page hero */
.page-hero {
  padding: 2.6rem 0 1.2rem;
  background: linear-gradient(90deg, rgba(0, 194, 199, 0.08), rgba(15, 23, 42, 0.02));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.page-hero h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-hero p {
  color: #4b5563;
}

/* Contact */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-item i {
  margin-top: 0.15rem;
  color: var(--color-primary);
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Legal */
.legal-text {
  max-width: 720px;
  font-size: 0.95rem;
}

/* Footer */
.main-footer {
  background: #020617;
  color: #e5e7eb;
}

.footer-top {
  padding: 2.5rem 0 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5f5;
  font-size: 0.9rem;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact li {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.footer-contact i {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.7rem 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Scroll top button */
.scroll-top-btn {
  position: fixed;
  right: 1.2rem;
  bottom: 4.2rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 10% 0%, #00c2c7 0%, #1d4ed8 90%);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
  z-index: 900;
}

/* Mobile fixed bar */
.mobile-fixed-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 950;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.3);
}

.mobile-fixed-btn {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.65rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-fixed-btn i {
  font-size: 1rem;
}

.call-btn {
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  color: #111827;
}

.request-btn {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #f9fafb;
  text-decoration: none;
}

/* Desktop: hide bottom bar */
@media (min-width: 992px) {
  .mobile-fixed-bar {
    display: none;
  }
}

/* Small screens */
@media (max-width: 767.98px) {
  .hero-content.glass-card {
    margin-top: 3rem;
  }
  .section-padding {
    padding: 3rem 0;
  }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-slide-item {
    height: 60vh;
  }
}

/* === EK GÜNCELLEMELER: PREMIUM ALT BUTONLAR & CİHAZ GÖRSELLERİ === */

/* Cihaz görsel alanı */
.device-img-wrapper {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.3), rgba(15, 23, 42, 0.4));
}

.device-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.2s ease-out;
}

.device-card:hover .device-img-wrapper img {
  transform: scale(1.06);
}

/* Alt sabit bar – cam efekt + iki renkli premium yapı */
.mobile-fixed-bar {
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  gap: 0.5rem;
}

.mobile-fixed-btn {
  flex: 1;
  border-radius: 999px;
  margin: 0 0 0.25rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.6rem;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out;
}

.mobile-fixed-btn span {
  white-space: nowrap;
}

.mobile-fixed-btn i {
  font-size: 1rem;
}

/* İki tonlu yapı */
.call-btn {
  background: linear-gradient(135deg, rgba(34, 197, 235, 0.18), rgba(56, 189, 248, 0.9));
  color: #0f172a;
}

.request-btn {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.18), rgba(239, 68, 68, 0.95));
  color: #f9fafb;
  text-decoration: none;
}

/* Pop efekti */
.mobile-fixed-btn.pressed {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
}

/* Hafif hover efekti (dokunmatik olmayan cihazlarda) */
@media (hover: hover) {
  .mobile-fixed-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.9);
    border-color: rgba(248, 250, 252, 0.9);
  }
}


.mobile-fixed-btn {
  position: relative;
}

.mobile-fixed-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.8), rgba(248, 113, 113, 0.8));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.15s ease-out;
}

@media (hover: hover) {
  .mobile-fixed-btn:hover::before {
    opacity: 0.7;
  }
}
