
    :root {
      --dark: #0A1F1C;
      --brand-dark: #6B775A;
      --brand-light: #A8B38A;
      --green: var(--brand-dark);
      --light: #F8FAF9;
      --text: #1A1A1A;
      --gray: #7A7A7A;
      --card: #ffffff;
      --border: #e6e6e6;
      --radius: 18px;
      --shadow-lg: 0 24px 48px rgba(0, 0, 0, .08);
      --shadow-md: 0 12px 28px rgba(0, 0, 0, .07);
      --shadow-sm: 0 6px 16px rgba(0, 0, 0, .06);
      --gradient-brand: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
      /* §14 — Responsive CSS Custom Properties */
      --section-padding-x: 60px;
      --section-padding-y: 60px;
      --card-padding: 40px;
      --grid-gap: 32px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      width: 100%;
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }


    /* Hero */
    .contact-hero {
      min-height: 100vh;
      min-height: 100svh;
      position: relative;
      background: url('../contact/hero.webp') no-repeat center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      margin-top: 0;
      overflow: hidden;
      padding: 0 60px;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 31, 28, 0.85) 0%, rgba(10, 31, 28, 0.6) 100%);
      z-index: 1;
    }

    .contact-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .contact-hero h1 {
      font-size: 64px;
      font-weight: 900;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, #fff 0%, #d5dad5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .contact-hero p {
      font-size: 20px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 500;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Contact Main Section */
    .contact-section {
      padding: 80px 60px;
      background: #fff;
      position: relative;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: start;
    }

    .form-wrapper {
      background: #fff;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      padding: 40px;
      border: 1px solid var(--border);
    }

    .form-wrapper h2 {
      font-size: 32px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .form-wrapper p {
      font-size: 16px;
      color: #5a6b65;
      margin-bottom: 24px;
    }

    .contact-form {
      display: grid;
      gap: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid #dce3df;
      background: #fbfcfc;
      font-size: 15px;
      color: var(--text);
      font-family: inherit;
      transition: all 0.2s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--brand-dark);
      box-shadow: 0 0 0 4px rgba(107, 119, 90, 0.15);
      background: #fff;
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      background: var(--gradient-brand);
      color: #0b1410;
      border: 0;
      border-radius: 12px;
      font-weight: 800;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      width: 100%;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    }

    .contact-info-wrapper {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .info-card {
      background: #f4f6f5;
      border-radius: 20px;
      padding: 30px;
      border: 1px solid rgba(10, 31, 28, 0.06);
    }

    .info-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      align-items: flex-start;
    }

    .info-item:last-child {
      margin-bottom: 0;
    }

    .info-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #fff;
      color: var(--brand-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
      flex-shrink: 0;
    }

    .info-content strong {
      display: block;
      font-size: 14px;
      color: var(--dark);
      margin-bottom: 2px;
    }

    .info-content a,
    .info-content span {
      font-size: 15px;
      color: #4a5c56;
      text-decoration: none;
      line-height: 1.5;
      overflow-wrap: break-word;
      word-break: break-all;
    }

    .info-content a:hover {
      color: var(--brand-dark);
      text-decoration: underline;
    }

    .map-card {
      border-radius: 20px;
      overflow: hidden;
      height: 300px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .map-card iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* FAQ Section */
    .faq-section {
      padding: 80px 60px;
      background: linear-gradient(180deg, #f8faf9 0%, #eef2ef 100%);
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-header h2 {
      font-size: 36px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .faq-header p {
      font-size: 18px;
      color: var(--gray);
    }

    .faq-item {
      background: #fff;
      border-radius: 16px;
      margin-bottom: 12px;
      border: 1px solid rgba(10, 31, 28, 0.08);
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .faq-item[open] {
      box-shadow: var(--shadow-md);
      border-color: rgba(107, 119, 90, 0.3);
    }

    .faq-q {
      width: 100%;
      text-align: left;
      padding: 20px 24px;
      font-weight: 700;
      font-size: 16px;
      color: var(--dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-q::-webkit-details-marker {
      display: none;
    }

    .faq-q::after {
      content: "+";
      font-size: 20px;
      font-weight: 300;
      color: var(--brand-dark);
    }

    .faq-item[open] .faq-q::after {
      content: "-";
    }

    .faq-a {
      padding: 0 24px 24px;
      color: #4a5c56;
      line-height: 1.6;
      font-size: 15px;
    }

    /* CTA Section (From about.html) */
    .cta-section {
      position: relative;
      overflow: hidden;
      margin: 80px auto 80px;
      padding: 70px 60px;
      max-width: 1100px;
      text-align: center;
      background: linear-gradient(135deg, rgba(168, 179, 138, .18), rgba(107, 119, 90, .45)), radial-gradient(900px at 20% 20%, rgba(255, 255, 255, .22), transparent);
      border-radius: 28px;
      border: 1px solid rgba(107, 119, 90, .25);
      box-shadow: 0 22px 48px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .05);
    }

    .cta-section::before,
    .cta-section::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.35;
    }

    .cta-section::before {
      background: rgba(168, 179, 138, .45);
      top: -60px;
      left: -40px;
    }

    .cta-section::after {
      background: rgba(107, 119, 90, .35);
      bottom: -80px;
      right: -10px;
    }

    .cta-section h2 {
      position: relative;
      font-size: 34px;
      font-weight: 900;
      letter-spacing: -0.01em;
      color: #0a1f1c;
      margin: 0 0 14px;
    }

    .cta-section p {
      position: relative;
      font-size: 17px;
      line-height: 1.7;
      color: #30423c;
      margin: 0 auto 22px;
      max-width: 720px;
    }

    .btn-cta {
      display: inline-block;
      padding: 16px 40px;
      background: var(--gradient-brand);
      color: #0A1F1C;
      border-radius: 12px;
      font-weight: 800;
      text-decoration: none;
      font-size: 18px;
      transition: transform 0.2s, filter 0.2s;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    }

    /* Footer (Same as about.html) */
    .site-footer {
      margin-top: 0;
      background: #0a1f1c;
      color: #e8efe9;
    }

    .site-footer .container {
      max-width: 1300px;
      margin: auto;
      padding: 60px 60px 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 36px;
    }

    .footer-brand {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .footer-brand img {
      height: 36px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      flex-shrink: 0;
    }

    .footer-brand .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
      margin-top: 0;
      align-self: flex-start;
    }

    .footer-brand .wordmark {
      letter-spacing: 0.4em;
      font-weight: 800;
      font-size: 20px;
      color: #e8efe9;
    }

    .footer-brand .tagline {
      font-size: 9px;
      font-weight: 600;
      color: #d5dad5;
      opacity: .9;
      letter-spacing: .06em;
      margin-top: 2px;
    }

    .footer-brand {
      display: flex;
      gap: 20px;
    }

    .footer-brand .catchline {
      line-height: 1.5em;
      margin: 14px 0 10px;
      padding: 6px 0;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: .02em;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer-brand .social {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .footer-brand .social a {
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-brand);
      color: #0b1410;
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, filter .2s ease;
    }

    .footer-brand .social a:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }

    .footer-brand .social svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .footer-col h4 {
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #cfe1d6;
      margin-bottom: 12px;
    }

    .footer-col a {
      display: block;
      color: #e8efe9;
      text-decoration: none;
      opacity: .9;
      padding: 6px 0;
      font-size: 14px;
    }

    .footer-col a:hover {
      opacity: 1;
      color: #fff;
    }

    .footer-contact p {
      font-size: 14px;
      opacity: .9;
      padding: 6px 0;
    }

    .newsletter {
      display: flex;
      gap: 8px;
      margin-top: 8px;
    }

    .newsletter input {
      flex: 1;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .06);
      color: #fff;
    }

    .newsletter button {
      padding: 10px 14px;
      border-radius: 10px;
      border: 0;
      background: var(--gradient-brand);
      color: #0b1410;
      font-weight: 800;
    }

    .map-embed {
      margin-top: 8px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 12px;
      overflow: hidden;
    }

    .map-embed iframe {
      width: 100%;
      height: 240px;
      border: 0;
      display: block;
    }

    .contact-list {
      list-style: none;
      margin: 8px 0 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .contact-list .icon {
      color: #cfe1d6;
      line-height: 1;
      margin-top: 2px;
    }

    .contact-list a {
      color: #e8efe9;
      text-decoration: underline;
    }

    .contact-list a:hover {
      color: #fff;
    }

    .contact-list address {
      font-style: normal;
      color: #e8efe9;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-top: 28px;
      padding-top: 18px;
      font-size: 13px;
      opacity: .9;
    }

    .footer-bottom a {
      color: #e8efe9;
      text-decoration: none;
      margin-left: 16px;
    }

    .footer-col:nth-of-type(3) a {
      position: relative;
      padding-left: 18px;
    }

    .footer-col:nth-of-type(3) a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      transform: translateY(-50%);
      background: var(--gradient-brand);
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .25) inset;
    }

    .footer-col:nth-of-type(2) a {
      position: relative;
      padding-left: 18px;
    }

    .footer-col:nth-of-type(2) a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      transform: translateY(-50%);
      background: var(--gradient-brand);
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .25) inset;
    }

    .footer-col:nth-of-type(2) h4::after {
      content: "";
      display: block;
      width: 44px;
      height: 2px;
      margin-top: 8px;
      background: var(--gradient-brand);
      border-radius: 2px;
    }

    .footer-col:nth-of-type(3) h4::after {
      content: "";
      display: block;
      width: 44px;
      height: 2px;
      margin-top: 8px;
      background: var(--gradient-brand);
      border-radius: 2px;
    }

    .footer-col:nth-of-type(4) h4::after {
      content: "";
      display: block;
      width: 44px;
      height: 2px;
      margin-top: 8px;
      background: var(--gradient-brand);
      border-radius: 2px;
    }

    /* Responsive */
    @media screen and (max-width: 1024px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-hero h1 {
        font-size: 48px;
      }

      .form-wrapper {
        padding: 30px;
      }
    }

    @media screen and (max-width: 768px) {

      .contact-hero {
        padding: 140px 20px 60px;
        height: auto;
        min-height: auto;
      }

      .contact-hero h1 {
        font-size: 36px;
      }

      .contact-section,
      .faq-section {
        padding: 60px 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 40px 20px;
        border-radius: 20px;
        margin-top: 40px;
      }

      .cta-section h2 {
        font-size: 26px;
      }

      .btn-cta {
        width: 100%;
        justify-content: center;
      }
    }

    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      backdrop-filter: blur(4px);
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: #fff;
      padding: 40px;
      border-radius: 24px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
      transform: translateY(20px);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0);
    }

    .modal-content h3 {
      font-size: 20px;
      font-weight: 800;
      color: #0A1F1C;
      margin-bottom: 28px;
      line-height: 1.5;
    }

    .btn-modal {
      display: inline-flex;
      padding: 14px 32px;
      background: var(--gradient-brand);
      color: #0A1F1C;
      font-weight: 800;
      text-decoration: none;
      border-radius: 99px;
      transition: transform 0.2s;
      font-size: 14px;
    }

    .btn-modal:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Quote Modal Styles */
    .modal-content.quote-modal {
      max-width: 600px;
      text-align: left;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .modal-content.quote-modal::-webkit-scrollbar {
      display: none;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 32px;
      cursor: pointer;
      color: #666;
      transition: color 0.2s;
      line-height: 1;
    }

    .modal-close:hover {
      color: #0A1F1C;
    }

    .modal-subtitle {
      color: var(--gray);
      font-size: 14px;
      margin-bottom: 24px;
    }

    body.modal-open {
      overflow: hidden !important;
      position: fixed;
      width: 100%;
    }

    /* Quote Form Styles */
    .quote-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .quote-form .form-group {
      margin-bottom: 18px;
    }

    .quote-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
      width: 100%;
      padding: 12px 14px;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 10px;
      transition: border-color 0.2s, box-shadow 0.2s;
      font-family: inherit;
      background: #fafafa;
    }

    .quote-form input:focus,
    .quote-form select:focus,
    .quote-form textarea:focus {
      outline: none;
      border-color: var(--brand-dark);
      box-shadow: 0 0 0 3px rgba(107, 119, 90, 0.15);
      background: #fff;
    }

    .quote-form textarea {
      resize: vertical;
      min-height: 80px;
    }

    .quote-form .btn-submit {
      width: 100%;
      padding: 16px 24px;
      background: var(--gradient-brand);
      color: #0A1F1C;
      font-weight: 800;
      font-size: 15px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      margin-top: 8px;
    }

    .quote-form .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Success Modal */
    .modal-content.success-modal {
      max-width: 420px;
      text-align: center;
      padding: 48px 40px;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #28a745, #5cb85c);
      color: #fff;
      font-size: 40px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
    }

    .success-modal h3 {
      font-size: 22px;
      color: #0A1F1C;
      margin-bottom: 16px;
    }

    .success-modal p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin: 0 0 8px;
    }

    .success-modal .success-note {
      font-weight: 600;
      color: #6B775A;
      margin-bottom: 24px;
    }

    .success-modal .btn-submit {
      max-width: 200px;
    }

    .readonly-field {
      background: #e9ecef !important;
      cursor: not-allowed;
    }

    .checkbox-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      cursor: pointer;
    }

    .checkbox-label input {
      width: auto;
    }

    /* Modal Responsive */
    @media (max-width: 480px) {
      .modal-content.quote-modal {
        padding: 24px;
      }

      .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    /* §2.1 — 360px Breakpoint */
    @media (max-width: 360px) {
      .contact-hero h1 {
        font-size: 24px;
      }

      .contact-hero p {
        font-size: 15px;
      }

      .contact-section {
        padding: 40px 12px;
      }

      .contact-form input,
      .contact-form textarea,
      .contact-form select {
        min-height: 44px;
        font-size: 16px;
      }
    }

    /* §11.1 — Azaltılmış Hareket Tercihi */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* §11.4 — Focus Visible Stilleri */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid rgba(168, 179, 138, 0.8);
      outline-offset: 2px;
    }

    /* §11.2 — Hover sadece fare/trackpad cihazlarda */
    @media (hover: hover) and (pointer: fine) {
      .contact-info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      }
    }
  
