:root {
    --accent: #0ea5a4;
    --accent2: #38bdf8;
    --dark: #0f172a;
    --muted: #475569;
    --bg: #f9fafb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
}
a{
    text-decoration: none;
}
/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 600;
    color: var(--dark);
}

nav a:hover {
    color: var(--accent2);
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
}

.logo-text {
    font-weight: 800;
    color: var(--dark);
}

/* Hero */
.hero-wrap {
    background-image: linear-gradient(180deg, rgba(6, 147, 227, 0.06), rgba(255, 255, 255, 0.15)), url('bg.jpg');
    background-size: cover;
    background-position: top;
    padding: 80px 16px;
    color: white;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: center;
}

.hero-left {
    padding: 36px;
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    */border-radius: 14px;
}
/* Form kapsayıcı */
#contactForm {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Input ve textarea */
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

/* Focus efekti */
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

/* Textarea */
#contactForm textarea {
  min-height: 120px;
  resize: vertical;
}

/* Butonlar */
#contactForm .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

#contactForm .btn {
  padding: 10px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

#contactForm .btn:hover {
  transform: translateY(-2px);
}

/* Gönder butonu */
#contactForm .btn[type="submit"] {
  background: #3b82f6;
  color: #fff;
}

#contactForm .btn[type="submit"]:hover {
  background: #2563eb;
}

/* Temizle butonu */
#contactForm .btn-reset {
  background: #e2e8f0;
  color: #334155;
}

#contactForm .btn-reset:hover {
  background: #cbd5e1;
}

/* 📱 Mobil uyumluluk */
@media (max-width: 480px) {
  #contactForm {
    padding: 16px;
  }

  #contactForm .form-actions {
    flex-direction: column;
    gap: 10px;
  }

  #contactForm .btn {
    width: 100%;
    text-align: center;
  }
}

.label-pill {
    display: inline-block;
    background: rgba(221, 224, 248, 0.548);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}
section h2{
    text-align: center;
    font-size: 2rem;
}
.mt-3{
    margin-top: 3rem;
}
#about{
    margin-top: 3rem;
    background-color: #ecf2fe;
    color: #000;
    text-align: center !important;
}
.hero h1 {
    font-size: 44px;
    color: #010609;
    line-height: 1.05;
}
body {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  color: #1e293b;
}

.pricing-section {
  padding: 60px 20px;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section .pricing-card {
  background: #f0f7ff;
  border-radius: 12px;
  padding: 24px;
  transition: 0.3s ease;
}

.pricing-section .pricing-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.pricing-section .pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.pricing-section .pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.pricing-section .pricing-header i {
  font-size: 28px;
  color: #1e293b;
}

.pricing-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-section ul li {
  display: flex;
  align-items: center;
  margin: 12px 0;
  font-size: 1rem;
  color: #334155;
  line-height: 1.4;
}

.pricing-section ul li i {
  color: #22c55e;
  margin-right: 10px;
  flex-shrink: 0;
}

/* 📱 Mobil uyumluluk */
@media (max-width: 768px) {
  .pricing-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .pricing-section .pricing-card {
    padding: 18px;
  }

  .pricing-section .pricing-header h3 {
    font-size: 1.1rem;
  }

  .pricing-section ul li {
    font-size: 0.95rem;
  }
}
.testimonials-section {
  padding: 60px 20px;
  background: #fff;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.swiper {
  padding-bottom: 30px;
}

.testimonial-card {
  background: #f0f7ff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-footer img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.testimonial-footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.testimonial-footer span {
  font-size: 0.85rem;
  color: #64748b;
}
@media (max-width: 480px) {
  .pricing-section h2 {
    font-size: 1.4rem;
  }

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

  .pricing-section .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pricing-section .pricing-header i {
    font-size: 24px;
  }

  .pricing-section ul li {
    font-size: 0.9rem;
  }
}
.hero p {
    color: #010a0f;
    margin: 12px 0 18px;
    font-size: 18px;
}

.cta {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn {
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    border: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: white;
    font-weight: 600;
}

.btn-reset {
    background: #f1f5f9;
    color: var(--dark);
}

.hero-features {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 200px;
}

.feature-icon {
    font-size: 26px;
    color: var(--accent);
}

.feature-title {
    font-weight: 700;
    color: #000;
}

.feature-desc {
    color: var(--muted);
    font-size: 13px;
}

/* Services */
section {
    padding: 72px 16px;
}

.grid {
    display: grid;
    gap: 22px;
}

.services {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}

.service-icon {
    font-size: 28px;
    color: var(--accent);
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, rgba(14, 165, 164, 0.12), rgba(56, 189, 248, 0.06));
}

/* About */
.about {
    max-width: 1000px;
    margin: auto;
}
.about h2{
    font-size: 2rem;
}
.about p{
    font-size: 1.1rem;
}
/* Prices */
.prices {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #eef6f6;
}

/* Reviews */
.reviews {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Contact */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 22px;
    align-items: start;
}

.map-box {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
#services{
    padding: 5rem 0rem;
}
.contact-info {
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.quick-form h3 {
    margin-bottom: 8px;
}

.quick-form p {
    color: var(--muted);
    margin-bottom: 14px;
}

/* Footer */
footer {
    width: 100%;
    padding: 18px 0;
    text-align: center;
    color: #fff;
    background-color: #000;
}

.footer-brand {
    font-weight: 800;
}
footer a{
    text-decoration: none;
    color: #e40b0b;
}
.footer-copy {
    font-size: 13px;
    margin-top: 6px;
}

/* Responsive */
@media(max-width:1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 34px;
    }

    .hero-left {
        padding: 26px;
    }
}

@media(max-width:480px) {
    nav ul {
        display: none;
    }
}