    /* === General Reset & Font === */
    html {
      font-size: 14px;
    }

    @media (min-width: 768px) {
      html {
        font-size: 16px;
      }
    }

    html {
      position: relative;
      min-height: 100%;
    }

    body {
      margin-bottom: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* === Focus Styles === */
    .btn:focus,
    .btn:active:focus,
    .btn-link.nav-link:focus,
    .form-control:focus,
    .form-check-input:focus {
      box-shadow:
        0 0 0 0.1rem white,
        0 0 0 0.25rem #6366f1;
    }

    /* === Form floating placeholder === */
    .form-floating > .form-control-plaintext::placeholder,
    .form-floating > .form-control::placeholder {
      color: var(--bs-secondary-color);
      text-align: end;
    }

    .form-floating > .form-control-plaintext:focus::placeholder,
    .form-floating > .form-control:focus::placeholder {
      text-align: start;
    }

    /* === Premium Card Defaults === */
    .card {
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    }

    .card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .card-header {
      border-radius: 16px 16px 0 0 !important;
    }

    /* === Button Transitions === */
    .btn {
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: #6366f1;
      border-color: #6366f1;
      border-radius: 12px;
    }

    .btn-primary:hover {
      background: #4f46e5;
      border-color: #4f46e5;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
    }

    .btn-outline-primary {
      border-color: #6366f1;
      color: #6366f1;
      border-radius: 12px;
    }

    .btn-outline-primary:hover {
      background: #6366f1;
      border-color: #6366f1;
      color: #fff;
    }

    /* === Link transitions === */
    a {
      transition: color 0.2s ease;
    }

    /* === Smooth scroll === */
    html {
      scroll-behavior: smooth;
    }

    /* === Table improvements === */
    .table th {
      font-weight: 600;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #64748b;
    }

    /* === Selection color === */
    ::selection {
      background: rgba(99, 102, 241, 0.15);
      color: #1e293b;
    }
    /* === WEEKLY SCHEDULE (MODERN REDESIGN) === */

    /* Wrapper & Background */
    .schedule-wrapper {
      background-color: #fcfaff; /* Very light purple tint */
      min-height: 100vh;
      padding-bottom: 60px;
    }

    /* Header Section */
    .schedule-header {
      text-align: center;
      padding: 60px 0 40px;
    }
    .sh-date-range {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.95rem;
      color: #64748b;
      font-weight: 500;
      margin-bottom: 24px;
    }

    /* Modern Tabs */
    .sh-tabs {
      display: inline-flex;
      background: #f1f5f9;
      padding: 5px;
      border-radius: 999px;
      position: relative;
    }
    .sh-tab-btn {
      border: none;
      background: transparent;
      padding: 10px 32px;
      border-radius: 999px;
      font-weight: 600;
      color: #64748b;
      font-size: 0.95rem;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .sh-tab-btn.active {
      background: #8b5cf6; /* Vivid Purple */
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
    }
    .sh-tab-btn:hover:not(.active) {
      color: #8b5cf6;
      background: rgba(139, 92, 246, 0.05);
    }

    /* Gunluk Program Karti */
    .daily-card {
      background: #ffffff;
      border: 1px solid #f1f5f9;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(148, 163, 184, 0.05); /* Softer shadow */
      margin-bottom: 30px;
      overflow: hidden;
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    }
    .daily-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(148, 163, 184, 0.1);
    }

    /* Gunluk Program Basligi */
    .daily-header {
      padding: 18px 24px;
      border-bottom: 1px solid #f1f5f9;
      display: flex;
      align-items: center;
      gap: 12px;
      background: #ffffff;
    }
    .dh-date {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e293b;
    }
    .dh-badge {
      background: #8b5cf6;
      color: #fff;
      font-size: 0.7rem;
      padding: 4px 8px;
      border-radius: 6px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Course Row */
    .course-row {
      display: flex;
      align-items: center;
      padding: 28px 24px;
      min-height: 122px;
      border-bottom: 1px solid #f8fafc;
      transition: background 0.2s;
    }
    .course-row:last-child {
      border-bottom: none;
    }
    .course-row:hover {
      background: #fafbff;
    }

    /* Time Column */
    .cr-time {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-right: 32px;
      min-width: 60px;
    }
    .cr-start {
      font-size: 1.25rem;
      font-weight: 800;
      color: #1e293b;
      line-height: 1;
    }
    .cr-end {
      font-size: 0.85rem;
      color: #94a3b8;
      margin-top: 4px;
      font-weight: 500;
    }

    /* Info Column */
    .cr-info {
      flex: 1;
    }
    .cr-title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 6px;
    }
    .cr-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
    }
    .cr-tag {
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      text-transform: uppercase;
    }
    .cr-tag-red {
      background: #fee2e2;
      color: #ef4444;
    } /* Gunluk Kayit */
    .cr-tag-green {
      background: #dcfce7;
      color: #10b981;
    } /* Ders Etiketi */

    .cr-instructor {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      color: #64748b;
      margin-bottom: 10px;
    }

    .cr-instructor i {
      color: #8b5cf6;
    }

    /* Equipment Box */
    .cr-equip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.82rem;
      color: #475569;
    }
    .cr-equip i {
      color: #8b5cf6;
    }

    /* Action Column */
    .cr-action {
      margin-left: auto;
      padding-left: 20px;
    }

    /* Modern Buttons */
    .btn-modern-join {
      background: #10b981;
      color: #fff;
      border: none;
      padding: 10px 24px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.92rem;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
      transition: all 0.3s;
      display: inline-flex;
    }
    /* === EKIPMAN BÖLÜMÜ (COMPACT/ORIGINAL - 3x3 Layout) === */
    .equip-wrapper {
      border-radius: 32px;
      background: transparent;
      padding: 0;
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
    }

    .equip-grid {
      display: grid;
      gap: 20px;
      margin-top: 30px;
      grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 991.98px) {
      .equip-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .equip-grid {
        grid-template-columns: 1fr;
      }
    }

    .equip-item {
      perspective: 1000px;
    }

    .equip-flip {
      position: relative;
      width: 100%;
      height: 220px; /* REVERTED TO SMALLER HEIGHT */
      transform-style: preserve-3d;
      transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
      border-radius: 20px;
      cursor: pointer;
    }
    .equip-item:hover .equip-flip {
      transform: rotateY(180deg);
    }

    .equip-face {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 20px;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* FRONT FACE */
    .equip-front {
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(99, 102, 241, 0.2);
    }

    .equip-front > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      text-align: center;
    }

    .equip-icon {
      width: 64px;
      height: 64px; /* SMALLER ICON */
      border-radius: 50%;
      border: 3px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.15);
      font-size: 2rem;
      margin-bottom: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .equip-img-box {
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .equip-img-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .equip-name {
      font-size: 1.1rem; /* SMALLER TEXT */
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.3;
      margin-bottom: 6px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .equip-spec {
      font-size: 0.85rem;
      opacity: 0.95;
      font-weight: 600;
      letter-spacing: 0.02em;
      background: rgba(0, 0, 0, 0.2);
      padding: 4px 12px;
      border-radius: 8px;
    }

    /* BACK FACE */
    .equip-back {
      background: #0f172a;
      color: #f1f5f9;
      transform: rotateY(180deg);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
      padding: 24px 20px;
    }

    .equip-back-desc {
      font-size: 0.95rem;
      opacity: 0.95;
      line-height: 1.5;
      font-weight: 500;
    }

    .equip-chip {
      display: inline-flex;
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      background: rgba(139, 92, 246, 0.2);
      color: #c4b5fd;
      margin-top: 16px;
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .btn-modern-join:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
      color: #fff;
    }
    .btn-modern-disabled {
      background: #e2e8f0;
      color: #94a3b8;
      padding: 10px 20px;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: default;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* === MOBILE RESPONSIVE — Course Row & Schedule === */
    @media (max-width: 768px) {
      .schedule-header {
        padding: 30px 0 24px;
      }
      .sh-tab-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
      }

      .daily-header {
        padding: 14px 16px;
      }
      .dh-date {
        font-size: 0.95rem;
      }

      .course-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        min-height: auto;
        gap: 12px;
      }
      .cr-time {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        margin-right: 0;
        min-width: auto;
      }
      .cr-start {
        font-size: 1.05rem;
      }
      .cr-end {
        margin-top: 0;
      }
      .cr-info {
        width: 100%;
      }
      .cr-title {
        font-size: 1rem;
      }
      .cr-title-row {
        flex-wrap: wrap;
        gap: 8px;
      }
      .cr-action {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
      }
      .btn-modern-join,
      .btn-modern-disabled {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.85rem;
      }

      /* Video Modal */
      .video-modal-body {
        min-height: 250px;
      }
      #videoWatermark {
        top: 8px;
        left: 8px;
        font-size: 0.65rem;
        padding: 6px 10px;
      }
      #videoWatermark .wm-name {
        font-size: 0.75rem;
      }
    }

    /* === MODERN HOMEPAGE STYLES (Cards vs Tables) === */

    /* Section Spacing */
    section.py-5 {
      padding-top: 5rem !important;
      padding-bottom: 5rem !important;
    }

    /* Program Card Container (Vertical Stack) */
    .program-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Individual Session Card */
    .session-card {
      background: #ffffff;
      border: 1px solid #f1f5f9;
      border-radius: 18px;
      padding: 26px 28px;
      min-height: 126px;
      display: flex;
      align-items: center;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      overflow: hidden;
    }

    .session-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(148, 163, 184, 0.12); /* Soft Depth */
      border-color: #e2e8f0;
    }

    /* Left: Time Column */
    .session-time-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 80px;
      margin-right: 24px;
      padding-right: 24px;
      border-right: 2px solid #f8fafc;
    }

    .session-start {
      font-size: 1.5rem;
      font-weight: 800;
      color: #1e293b;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .session-end {
      font-size: 0.85rem;
      font-weight: 500;
      color: #94a3b8;
      margin-top: 4px;
    }

    /* Center: Info Column */
    .session-info {
      flex: 1;
    }

    .session-badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 6px;
      background: #f0fdf4;
      color: #16a34a; /* Green for Active/Seance */
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 6px;
      letter-spacing: 0.05em;
    }

    .session-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 4px;
    }

    .session-instructor {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      color: #64748b;
    }

    .session-instructor i {
      color: #8b5cf6; /* Primary Purple Accent */
    }

    /* Right: Action Column */
    .session-action {
      margin-left: auto;
      padding-left: 20px;
    }

    .btn-join-card {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      color: #475569;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .btn-join-card:hover {
      background: #f8fafc;
      color: #0f172a;
      border-color: #cbd5e1;
    }

    .btn-join-card.primary {
      background: #7c3aed;
      color: #ffffff;
      border: none;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    }

    .btn-join-card.primary:hover {
      background: #6d28d9;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
    }

    /* Equipment Chip */
    .equip-chip-small {
      display: inline-flex;
      font-size: 0.75rem;
      color: #94a3b8;
      margin-left: 10px;
      align-items: center;
      gap: 4px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .session-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        min-height: auto;
      }

      .session-time-col {
        flex-direction: row;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        gap: 10px;
        align-items: baseline;
        width: 100%;
        margin-bottom: 8px;
        border-bottom: 1px solid #f8fafc;
        padding-bottom: 12px;
        justify-content: flex-start;
      }

      .session-action {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
      }

      .btn-join-card {
        width: 100%;
        justify-content: center;
      }
    }

    /* === PAKET KARTLARI (Global) === */
    .pkg-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(20px, 2vw, 28px);
      width: 100%;
    }

    .pkg-grid-item {
      min-width: 0;
    }

    .pkg-card {
      position: relative;
      border-radius: 22px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      min-height: clamp(305px, 24vw, 385px);
      padding: clamp(24px, 2.2vw, 34px) clamp(22px, 2vw, 30px);
      transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
      overflow: hidden;
    }
    .pkg-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #7c3aed 0%, #6366f1 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .pkg-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    }
    .pkg-card:hover::before {
      opacity: 1;
    }
    .pkg-badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 600;
      background: #eef2ff;
      color: #4338ca;
      margin-bottom: 0;
    }
    .pkg-top-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }
    .pkg-discount-badge {
      margin-left: auto;
      min-width: 212px;
      max-width: 212px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
    }
    .pkg-discount-ribbon {
      position: relative;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      overflow: hidden;
      background: linear-gradient(90deg, #8d5a9d 0%, #9b71b8 18%, #b59bc6 34%, #decfc7 55%, #f1e5da 74%, #f8eee5 100%);
      border: 1px solid rgba(230, 214, 202, 0.95);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 10px 22px rgba(53, 33, 26, 0.2);
    }
    .pkg-discount-word {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-width: 132px;
      padding: 9px 16px 9px 18px;
      background: linear-gradient(90deg, rgba(141, 90, 157, 0.98) 0%, rgba(142, 93, 165, 0.98) 38%, rgba(146, 106, 183, 0.92) 72%, rgba(146, 106, 183, 0.18) 100%);
      color: #fbf6ff;
      font-family: "Outfit", sans-serif;
      font-size: 0.73rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      clip-path: polygon(12px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    }
    .pkg-discount-word i {
      font-size: 0.82rem;
      line-height: 1;
      opacity: 0.95;
      transform: scaleX(-1);
    }
    .pkg-discount-divider {
      width: 1px;
      height: 18px;
      background: rgba(122, 95, 84, 0.18);
      margin: 0 0 0 2px;
      flex: 0 0 auto;
    }
    .pkg-discount-rate {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 74px;
      padding: 9px 16px 9px 14px;
      background: transparent;
      color: #6f5647;
      font-family: "Outfit", sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1;
    }
    .pkg-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.65rem, 2.05vw, 2.3rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 10px !important;
    }
    .pkg-campaign-label {
      margin-top: 0;
      margin-bottom: 12px;
      font-family: "Playfair Display", serif;
      font-size: clamp(1rem, 1.3vw, 1.42rem);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: #d8b8c4;
      text-transform: capitalize;
    }
    .pkg-price-stack {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .pkg-pricing-block {
      margin-top: 6px;
    }
    .pkg-price-old {
      display: inline-flex;
      align-items: baseline;
      gap: 1px;
      font-family: "Outfit", sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      color: #b8afa7;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      opacity: 0.95;
    }
    .pkg-price-old .currency {
      font-size: 0.78rem;
      font-weight: 600;
      color: inherit;
      line-height: 1;
      margin-right: 0;
      transform: none;
    }
    .pkg-price {
      display: inline-flex;
      align-items: baseline;
      gap: 1px;
      font-family: "Outfit", sans-serif;
      font-size: clamp(2rem, 2.2vw, 2.7rem);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.04em;
      line-height: 0.92;
    }
    .pkg-price .currency {
      font-size: 1.02rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.96);
      line-height: 1;
      margin-right: 0;
      transform: none;
    }
    .pkg-price-old .amount,
    .pkg-price .amount {
      display: block;
      font-family: "Outfit", sans-serif;
      line-height: 0.9;
    }
    .pkg-price .amount {
      letter-spacing: -0.045em;
    }
    .pkg-detail {
      font-size: 0.85rem;
      color: #64748b;
      line-height: 1.55;
      min-height: calc(1.55em * 2);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .pkg-meta {
      font-size: 0.78rem;
      line-height: 1.45;
      row-gap: 0.65rem;
      column-gap: 1rem;
    }
    .pkg-meta-muted {
      color: #94a3b8;
    }
    .pkg-btn {
      display: block;
      width: 100%;
      padding: 12px 14px;
      border-radius: 14px;
      background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
      text-decoration: none;
      border: none;
      transition: all 0.3s;
      box-shadow: 0 2px 12px rgba(99, 102, 241, 0.2);
    }
    .pkg-btn:hover {
      box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
      color: #fff;
      transform: translateY(-1px);
    }
    .pkg-btn-bottom {
      margin-top: auto;
    }

    /* Image Background Support */
    .pkg-has-image {
      background-size: cover;
      background-position: center;
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
    .pkg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 100%
      );
      z-index: 1;
      transition: opacity 0.3s;
    }
    .pkg-has-image:hover .pkg-overlay {
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 100%
      );
    }
    .pkg-has-image .pkg-title,
    .pkg-has-image .pkg-price-old,
    .pkg-has-image .pkg-price,
    .pkg-has-image .pkg-detail,
    .pkg-has-image .pkg-price span,
    .pkg-has-image .pkg-price .currency,
    .pkg-has-image .pkg-price-old .currency,
    .pkg-has-image .d-flex {
      color: #fff !important;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    .pkg-has-image .pkg-price-old {
      color: rgba(255, 255, 255, 0.72) !important;
    }
    .pkg-has-image .pkg-badge {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(4px);
      color: #fff;
    }
    .pkg-has-image .pkg-discount-badge {
      color: #fff;
    }
    .pkg-has-image .pkg-discount-ribbon {
      background: linear-gradient(90deg, rgba(141, 90, 157, 0.96) 0%, rgba(155, 113, 184, 0.95) 18%, rgba(181, 155, 198, 0.9) 34%, rgba(222, 207, 199, 0.92) 55%, rgba(241, 229, 218, 0.94) 74%, rgba(248, 238, 229, 0.96) 100%);
      border-color: rgba(255, 247, 242, 0.72);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 12px 26px rgba(24, 14, 12, 0.34);
    }
    .pkg-has-image .pkg-discount-word {
      background: linear-gradient(90deg, rgba(141, 90, 157, 0.99) 0%, rgba(144, 98, 170, 0.99) 42%, rgba(149, 110, 187, 0.94) 74%, rgba(149, 110, 187, 0.16) 100%);
      color: #fff9f4;
    }
    .pkg-has-image .pkg-discount-divider {
      background: rgba(122, 95, 84, 0.18);
    }
    .pkg-has-image .pkg-discount-rate {
      color: #70564a !important;
      text-shadow: none;
    }
    .pkg-has-image .pkg-campaign-label {
      color: #f0cad9;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
    }
    .pkg-has-image .pkg-title {
      color: #fffefb !important;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
    }
    .pkg-has-image .pkg-meta {
      color: rgba(255, 255, 255, 0.92) !important;
    }
    .pkg-has-image .pkg-btn {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #fff;
    }
    .pkg-has-image .pkg-btn:hover {
        background: #fff;
        color: #000;
    }

    .pkg-grid-count-1,
    .pkg-grid-count-2 {
      max-width: 1220px;
      margin: 0 auto;
    }

    .pkg-grid-count-4 {
      max-width: 1380px;
      margin: 0 auto;
    }

    .pkg-grid-count-3,
    .pkg-grid-count-5,
    .pkg-grid-count-6,
    .pkg-grid-count-many {
      max-width: 1380px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .pkg-grid-count-1 {
        grid-template-columns: minmax(320px, 560px);
        justify-content: center;
      }

      .pkg-grid-count-2,
      .pkg-grid-count-3,
      .pkg-grid-count-4,
      .pkg-grid-count-5,
      .pkg-grid-count-6,
      .pkg-grid-count-many {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1200px) {
      .pkg-grid-count-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .pkg-grid-count-3,
      .pkg-grid-count-6,
      .pkg-grid-count-many {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .pkg-grid-count-5 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .pkg-grid-count-5 .pkg-grid-item {
        grid-column: span 2;
      }

      .pkg-grid-count-5 .pkg-grid-item:nth-child(4) {
        grid-column: 2 / span 2;
      }

      .pkg-grid-count-5 .pkg-grid-item:nth-child(5) {
        grid-column: 4 / span 2;
      }

      .pkg-grid-count-5,
      .pkg-grid-count-6,
      .pkg-grid-count-many {
        gap: 20px;
      }

      .pkg-grid-count-4 .pkg-card {
        min-height: clamp(300px, 20vw, 350px);
        padding: 24px 20px;
      }

      .pkg-grid-count-5 .pkg-card,
      .pkg-grid-count-6 .pkg-card,
      .pkg-grid-count-many .pkg-card {
        min-height: clamp(285px, 20vw, 340px);
        padding: 24px 20px;
      }

      .pkg-grid-count-4 .pkg-price {
        font-size: clamp(1.9rem, 1.95vw, 2.3rem);
      }

      .pkg-grid-count-5 .pkg-price,
      .pkg-grid-count-6 .pkg-price,
      .pkg-grid-count-many .pkg-price {
        font-size: clamp(1.85rem, 2vw, 2.35rem);
      }

      .pkg-grid-count-4 .pkg-title {
        font-size: clamp(1.42rem, 1.52vw, 1.82rem);
      }

      .pkg-grid-count-5 .pkg-title,
      .pkg-grid-count-6 .pkg-title,
      .pkg-grid-count-many .pkg-title {
        font-size: clamp(1.48rem, 1.72vw, 2rem);
      }

      .pkg-grid-count-4 .pkg-campaign-label {
        font-size: clamp(0.94rem, 0.98vw, 1.08rem);
      }

      .pkg-grid-count-5 .pkg-campaign-label,
      .pkg-grid-count-6 .pkg-campaign-label,
      .pkg-grid-count-many .pkg-campaign-label {
        font-size: clamp(0.98rem, 1.1vw, 1.22rem);
      }

      .pkg-grid-count-4 .pkg-btn {
        padding: 11px 14px;
        font-size: 0.86rem;
      }

      .pkg-grid-count-5 .pkg-btn,
      .pkg-grid-count-6 .pkg-btn,
      .pkg-grid-count-many .pkg-btn {
        padding: 11px 14px;
        font-size: 0.88rem;
      }
    }

    @media (max-height: 980px) and (min-width: 992px) {
      .pkg-card {
        min-height: 250px;
        padding: 22px 20px;
      }
    }

    .pkg-section-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #f0e7ff 0%, #eadcf4 42%, #f3dde5 72%, #f7ece2 100%);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: #6d28d9;
      margin-bottom: 18px;
      border: 1px solid rgba(185, 137, 203, 0.26);
      box-shadow: 0 14px 28px rgba(141, 90, 157, 0.12);
    }

    .pkg-section-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7f46da 0%, #9557d7 40%, #b989cb 72%, #ecd8d2 100%);
      color: #fff;
      font-size: 0.85rem;
      box-shadow: 0 8px 18px rgba(127, 70, 218, 0.22);
    }

    .package-listing-section {
      margin-top: 80px;
    }

    @media (min-width: 1200px) {
      .package-listing-section {
        padding-top: 2.75rem !important;
        padding-bottom: 3rem !important;
      }

      .package-listing-section .text-center.mb-5 {
        margin-bottom: 2.25rem !important;
      }
    }

    @media (max-width: 767.98px) {
      .pkg-card {
        min-height: 260px;
      }
    }

    .package-duration-card {
        position: relative;
        border-radius: 24px;
        border: 1px solid rgba(181, 152, 134, 0.26);
        background: linear-gradient(180deg, #fffdfa 0%, #f6eee7 100%);
        box-shadow: 0 24px 56px rgba(120, 90, 71, 0.12);
        overflow: hidden;
    }

    .package-duration-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, #b9967c 0%, #8a6d63 52%, #6f67a8 100%);
    }

    .package-duration-header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 24px 28px 20px;
        border-bottom: 1px solid rgba(138, 109, 99, 0.12);
        background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,248,242,0.58) 100%);
    }

    .package-duration-header-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f1e3d7 0%, #e9d7e1 100%);
        color: #7a5a67;
        font-size: 1.05rem;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.65),
            0 10px 24px rgba(157, 122, 112, 0.12);
    }

    .package-duration-title {
        font-weight: 700;
        font-size: 1.05rem;
        color: #2f2a2a;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .package-duration-subtitle {
        margin-top: 4px;
        font-size: 0.84rem;
        color: #786e6d;
    }

    .package-duration-table {
        table-layout: fixed;
        margin-bottom: 0;
    }

.package-duration-col-name {
        width: 48%;
}

.package-duration-col-stat {
        width: 26%;
}

    .package-duration-table thead th {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #9f8f88;
        font-weight: 600;
        padding: 15px 18px;
        background: rgba(152, 114, 97, 0.06);
        border-bottom: 1px solid rgba(181, 152, 134, 0.18);
    }

    .package-duration-table tbody td {
        font-size: 0.9rem;
        color: #514846;
        padding: 18px;
        vertical-align: middle;
        border-bottom-color: rgba(181, 152, 134, 0.14);
    }

    .package-duration-table tbody tr:hover {
        background: rgba(255, 248, 242, 0.84);
    }

    .package-duration-table tbody tr:last-child td {
        border-bottom-color: transparent;
    }

    .package-duration-name {
        font-weight: 700;
        color: #2d2626;
        font-size: 1rem;
    }

    .package-duration-meta {
        margin-top: 4px;
        font-size: 0.8rem;
        color: #8d7f79;
    }

    .package-duration-cell-name {
        text-align: left;
    }

    .package-duration-cell-stat {
        text-align: center;
    }

    .package-duration-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 102px;
        padding: 9px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, #fffdfa 0%, #f7efe8 100%);
        border: 1px solid rgba(205, 183, 168, 0.38);
        color: #8a7163;
        font-weight: 700;
        font-size: 0.83rem;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.8),
            0 8px 18px rgba(173, 145, 128, 0.08);
    }

    .package-duration-chip-soft {
        background: linear-gradient(135deg, #f3e7da 0%, #e9d8c5 100%);
        border-color: rgba(181, 152, 134, 0.2);
        color: #7a5f51;
    }

    .package-duration-total {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 112px;
        padding: 10px 18px;
        border-radius: 999px;
        background: linear-gradient(135deg, #efe1eb 0%, #e4d6e5 100%);
        border: 1px solid rgba(149, 118, 146, 0.18);
        color: #7c5e7c;
        font-weight: 700;
        font-size: 0.84rem;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.65),
            0 10px 22px rgba(164, 136, 165, 0.12);
    }

    .package-duration-mobile {
        padding: 10px 16px 16px;
    }

    .package-duration-mobile-item {
        padding: 16px 0;
        border-bottom: 1px solid rgba(181, 152, 134, 0.14);
    }

    .package-duration-mobile-item:last-child {
        border-bottom: none;
        padding-bottom: 6px;
    }

    .package-duration-mobile-head {
        padding: 0 2px 12px;
    }

    .package-duration-mobile-stats {
        display: grid;
        gap: 10px;
    }

    .package-duration-mobile-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 18px;
        background: rgba(255, 253, 250, 0.9);
        border: 1px solid rgba(205, 183, 168, 0.18);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
    }

    .package-duration-mobile-label {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #9f8f88;
    }

    @media (max-width: 767.98px) {
        .package-duration-header {
            align-items: flex-start;
            padding: 18px 18px 16px;
            gap: 12px;
        }

        .package-duration-subtitle {
            font-size: 0.78rem;
            line-height: 1.5;
        }

        .package-duration-header-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            font-size: 0.98rem;
        }

        .package-duration-title {
            font-size: 1rem;
        }

        .package-duration-name {
            font-size: 0.98rem;
        }

        .package-duration-meta {
            font-size: 0.78rem;
        }

        .package-duration-chip,
        .package-duration-total {
            min-width: 84px;
            padding: 8px 12px;
            font-size: 0.8rem;
        }
    }

    @media (max-width: 420px) {
        .package-duration-mobile {
            padding: 8px 12px 14px;
        }

        .package-duration-mobile-stat {
            padding: 10px 12px;
            gap: 10px;
        }

        .package-duration-mobile-label {
            font-size: 0.72rem;
        }

        .package-duration-chip,
        .package-duration-total {
            min-width: 76px;
            padding: 7px 10px;
            font-size: 0.77rem;
        }
    }

    /* === FOOTER STYLES === */
    .site-footer {
      background: #0f172a; /* Navbar ile ayni koyu lacivert ton */
      color: #94a3b8;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .site-footer .footer-heading {
      color: #f8fafc;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .site-footer a {
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .site-footer a:hover {
      color: #fff;
    }

    .site-footer .footer-divider {
      border-color: rgba(255, 255, 255, 0.1);
      margin: 24px 0;
    }

    .site-footer .bi {
      font-size: 1.2rem;
    }

    /* === FOOTER SOSYAL MEDYA İKONLARI === */
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #94a3b8;
      font-size: 1rem;
      transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      text-decoration: none;
    }
    .footer-social a:hover {
      transform: translateY(-3px) scale(1.1);
      color: #fff;
      border-color: transparent;
    }
    .footer-social a[title="Instagram"]:hover {
      background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
      );
    }
    .footer-social a[title="YouTube"]:hover {
      background: #ff0000;
    }
    .footer-social a[title="X (Twitter)"]:hover {
      background: #000000;
      border-color: rgba(255, 255, 255, 0.3);
    }
    .footer-social a[title="LinkedIn"]:hover {
      background: #0077b5;
    }

    /* === BRAND LOGO PREMIUM === */
    .brand-premium {
      display: inline-flex !important;
      align-items: center;
      gap: 12px;
      text-decoration: none !important;
      padding: 0;
    }

    .brand-icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s;
    }

    .brand-premium:hover .brand-icon-wrapper {
      transform: scale(1.05) rotate(-3deg);
    }

    .brand-monogram {
      font-family: "Playfair Display", serif;
      font-style: italic;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      top: 0px;
    }

    .bm-b {
      margin-right: -5px;
      z-index: 2;
      position: relative;
    }
    .bm-m {
      font-size: 1.05rem;
      position: relative;
      top: 2px;
    }

    .brand-text {
      font-family: "Outfit", sans-serif;
      font-weight: 700;
      font-size: 1.45rem;
      letter-spacing: -0.01em;
      transition: all 0.3s ease;
      padding-top: 2px;
    }

    .main-navbar-home .brand-icon-wrapper {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.02) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    .main-navbar-home .brand-monogram {
      color: #f8fafc;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
    .main-navbar-home .brand-text {
      color: #f8fafc;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    /* Solid Navbar Light Mode (Purple Metallic on White) */
    .main-navbar-solid .brand-icon-wrapper {
      background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
      border: 1px solid transparent;
      box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    }
    .main-navbar-solid .brand-monogram {
      color: #ffffff;
    }
    .main-navbar-solid .brand-text {
      color: #1e293b;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
      .brand-icon-wrapper {
        width: 34px;
        height: 34px;
      }
      .brand-monogram {
        font-size: 1.1rem;
      }
      .brand-text {
        font-size: 1.25rem;
      }
    }

    /* === COOKIE CONSENT === */
    .cookie-consent-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2140;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.96);
      border-top: 1px solid rgba(148, 163, 184, 0.22);
      box-shadow: 0 -14px 38px rgba(15, 23, 42, 0.11);
      opacity: 0;
      transform: translateY(100%);
      transition: opacity 0.22s ease, transform 0.22s ease;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .cookie-consent-bar.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .cookie-consent-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .cookie-consent-text {
      margin: 0;
      color: #334155;
      font-size: 0.9rem;
      line-height: 1.55;
      flex: 1 1 auto;
    }

    .cookie-consent-text a {
      color: #4f46e5;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-consent-heart {
      color: #ec4899;
      display: inline-block;
      font-size: 1.22em;
      font-weight: 800;
      margin: 0 4px;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86), 0 0 14px rgba(236, 72, 153, 0.44);
      transform: translateY(2px);
    }

    .cookie-consent-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .cookie-consent-primary,
    .cookie-consent-secondary {
      border-radius: 999px;
      font-weight: 700;
      white-space: nowrap;
      font-size: 0.88rem;
      padding: 10px 18px;
    }

    .cookie-consent-primary {
      color: #fff;
      border: 1px solid #6366f1;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      box-shadow: 0 10px 22px rgba(99, 102, 241, 0.24);
    }

    .cookie-consent-primary:hover {
      color: #fff;
      filter: brightness(1.03);
      transform: translateY(-1px);
    }

    .cookie-consent-secondary {
      color: #475569;
      text-decoration: none;
      border: 1px solid #cbd5e1;
      background: #fff;
    }

    .cookie-consent-secondary:hover {
      color: #1e293b;
      background: #f8fafc;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .cookie-consent-bar {
        padding: 14px 12px;
      }

      .cookie-consent-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
      }

      .cookie-consent-text {
        font-size: 0.86rem;
      }

      .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .cookie-consent-primary,
      .cookie-consent-secondary {
        width: 100%;
        padding: 10px 12px;
      }
    }
