/* Global Stiller */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

:root {
      --primary-color: #21014A;
      --secondary-color: #FF8A1D;
      --light-primary: #3A0E70;
      --light-bg: #f8f4ff;
      --white: #ffffff;
      --gray: #f0f0f0;
      --dark-gray: #666;
      --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
}

body {
      background-color: #f9f9f9;
      color: #333;
      line-height: 1.6;
}

.container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
}

/* Header Stili */
header {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 20px;
      position: relative;
}

header:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.logo {
      color: var(--primary-color);
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 15px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
      letter-spacing: 1px;
}

h1 {
      color: var(--primary-color);
      margin-top: 10px;
      font-size: 30px;
      font-weight: 600;
}

.header-description {
      color: var(--dark-gray);
      margin-top: 15px;
      font-size: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
}

/* SSS Konteyneri */
.faq-container {
      background-color: var(--white);
      border-radius: 15px;
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-bottom: 30px;
}

.faq-item {
      border-bottom: 1px solid var(--gray);
}

.faq-item:last-child {
      border-bottom: none;
}

/* Soru Stili */
.faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: var(--white);
      cursor: pointer;
      transition: var(--transition);
      position: relative;
}

.faq-question:hover {
      background-color: var(--light-bg);
}

.question-text {
      font-weight: 600;
      color: var(--primary-color);
      flex: 1;
}

.faq-question.active .question-text {
      color: var(--white);
}

.faq-question.active {
      background-color: var(--primary-color);
}

.icon {
      font-size: 24px;
      color: var(--secondary-color);
      transition: var(--transition);
      margin-left: 15px;
      font-weight: 300;
      height: 24px;
      width: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
}

.faq-question.active .icon {
      transform: rotate(45deg);
      color: var(--secondary-color);
}

/* Cevap Stili */
.faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      background-color: var(--light-bg);
      padding: 0 20px;
}

.faq-answer.active {
      max-height: 600px;
      padding: 20px;
}

.faq-answer p {
      margin-bottom: 15px;
}

.faq-answer p:last-child {
      margin-bottom: 0;
}

.faq-answer ul {
      margin-left: 20px;
      margin-bottom: 15px;
}

.faq-answer ul li {
      margin-bottom: 8px;
}

.accent {
      color: var(--secondary-color);
      font-weight: 600;
}

/* İletişim Bölümü - İki Sütunlu Yeni Düzen */


.contact-section {
      text-align: center;
      margin: 50px 0 30px;
      padding: 30px;
      background-color: var(--light-bg);
      border-radius: 15px;
      box-shadow: var(--shadow);
}

.contact-section h2 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 24px;
}

.contact-section p {
      color: var(--black);
      margin-bottom: 25px;
}

.contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
}

/* Form Stili */
.contact-form {
      flex: 1;
      min-width: 300px;
      text-align: left;
      background-color: var(--white);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
      margin-bottom: 20px;
}

.form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 14px;
}

.form-group input,
.form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 2px rgba(255, 138, 29, 0.2);
}

.form-group textarea {
      min-height: 120px;
      resize: vertical;
}

.form-submit-btn {
      background-color: var(--secondary-color);
      color: var(--white);
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
}

.form-submit-btn:hover {
      background-color: #e67200;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 138, 29, 0.3);
}

/* Arama Bölümü */
.contact-call {
      flex: 0 0 250px;
      background-color: var(--primary-color);
      color: var(--white);
      padding: 30px 20px;
      border-radius: 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(33, 1, 74, 0.3);
}

.call-icon {
      margin-bottom: 15px;
      color: var(--secondary-color);
}

.contact-call h3 {
      font-size: 22px;
      margin-bottom: 15px;
}

.phone-number {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--white);
}

.call-time {
      font-size: 14px;
      margin-bottom: 25px;
      opacity: 0.8;
}

.call-now-btn {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--white);
      text-decoration: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 3px 10px rgba(255, 138, 29, 0.3);
}

.call-now-btn:hover {
      background-color: #e67200;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 138, 29, 0.4);
}

/* Footer Stili */
.footer {
      margin-top: 50px;
      border-top: 1px solid var(--gray);
      padding-top: 30px;
}

.footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
}

.footer-logo {
      color: var(--primary-color);
      font-size: 24px;
      font-weight: bold;
}

.footer-contact p {
      margin-bottom: 5px;
      color: var(--dark-gray);
      font-size: 14px;
}

.footer-social {
      display: flex;
      gap: 15px;
}

.social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: var(--primary-color);
      color: var(--white);
      border-radius: 50%;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      transition: var(--transition);
}

.social-icon:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
}

.copyright {
      text-align: center;
      color: var(--dark-gray);
      font-size: 14px;
      padding-top: 20px;
      border-top: 1px solid var(--gray);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
      .container {
            padding: 20px 15px;
      }

      .logo {
            font-size: 28px;
      }

      h1 {
            font-size: 24px;
      }

      .faq-question {
            padding: 15px;
      }

      .question-text {
            font-size: 15px;
      }

      .contact-container {
            flex-direction: column;
      }

      .contact-form,
      .contact-call {
            width: 100%;
      }

      .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 20px;
      }

      .footer-social {
            justify-content: center;
      }
}

@media (max-width: 480px) {
      .logo {
            font-size: 24px;
      }

      h1 {
            font-size: 20px;
      }

      .contact-section {
            padding: 20px 15px;
      }

      .contact-call {
            padding: 25px 15px;
      }
}

/* Animasyonlar */
@keyframes pulse {
      0% {
            transform: scale(1);
      }

      50% {
            transform: scale(1.05);
      }

      100% {
            transform: scale(1);
      }
}

.contact-section:hover h2 {
      animation: pulse 1s infinite;
}