/* ============================================================
   AqarScope Portal CSS
   Saudi Real Estate Marketplace - RTL-First Design
   ============================================================ */

/* --- 0. CSS Variables --- */
:root {
    /* Brand Colors */
    --brand: #059191;
    --brand-dark: #047a7a;
    --brand-light: #e6f5f5;
    --brand-rgb: 5, 145, 145;

    /* Text Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;

    /* Background */
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --bg-card: #ffffff;

    /* Borders & Shadows */
    --border: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Fonts */
    --font-primary: 'El Messiri', sans-serif;
    --font-secondary: 'Zain', sans-serif;
    --font-mono: 'Alexandria', sans-serif;

    /* Status Colors */
    --success: #38a169;
    --warning: #ed8936;
    --danger: #e53e3e;
    --info: #3182ce;

    /* Transitions */
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 1. Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

.pt-container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 20px;
    width: 100%;
}

.pt-container--wide {
    max-width: 1440px;
}

.pt-container--narrow {
    max-width: 900px;
}

/* --- 2. Navbar --- */
.pt-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.pt-nav.pt-nav--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.pt-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.pt-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pt-nav__logo img {
    height: 36px;
    width: auto;
}

.pt-nav__logo-text {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand);
}

.pt-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pt-nav__link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    white-space: nowrap;
}

.pt-nav__link:hover,
.pt-nav__link.active {
    color: var(--brand);
    background: rgba(var(--brand-rgb), 0.06);
}

.pt-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pt-nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background var(--transition);
}

.pt-nav__hamburger:hover {
    background: var(--bg-light);
}

.pt-nav__hamburger span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.pt-nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.pt-nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.pt-nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.pt-nav__mobile {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
    animation: pt-fadeIn 0.25s ease;
}

.pt-nav__mobile.active {
    display: flex;
}

.pt-nav__mobile .pt-nav__link {
    font-size: 1.05rem;
    padding: 14px 16px;
    border-radius: var(--radius);
}

/* --- 3. Hero Search --- */
.pt-hero {
    position: relative;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-light) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.pt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pt-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    pointer-events: none;
}

.pt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
}

.pt-hero__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pt-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 400;
}

.pt-hero__search {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pt-hero__tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    margin-bottom: 8px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.pt-hero__tab {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.pt-hero__tab.active,
.pt-hero__tab:hover {
    background: #fff;
    color: var(--brand);
    box-shadow: var(--shadow-sm);
}

.pt-hero__form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pt-hero__form-group {
    flex: 1;
    min-width: 0;
}

.pt-hero__form-select,
.pt-hero__form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 0.925rem;
    color: var(--text-primary);
    background: var(--bg-light);
    transition: all var(--transition);
    direction: rtl;
    appearance: none;
    -webkit-appearance: none;
}

.pt-hero__form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C7C7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 36px;
}

.pt-hero__form-select:focus,
.pt-hero__form-input:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
}

.pt-hero__form-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.pt-hero__form-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.3);
}

.pt-hero__form-btn svg {
    width: 20px;
    height: 20px;
}

/* --- 4. Category Cards --- */
.pt-categories {
    padding: 40px 0;
}

.pt-categories__scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.pt-categories__scroll::-webkit-scrollbar {
    display: none;
}

.pt-categories__card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 160px;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.pt-categories__card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(var(--brand-rgb), 0.1);
}

.pt-categories__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-rgb), 0.08);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--brand);
    transition: all var(--transition);
}

.pt-categories__card:hover .pt-categories__icon {
    background: var(--brand);
    color: #fff;
    transform: scale(1.05);
}

.pt-categories__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pt-categories__count {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: -4px;
}

/* --- 5. Property Card --- */
.pt-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    backdrop-filter: blur(4px);
}

.pt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--brand-rgb), 0.2);
}

.pt-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light);
}

.pt-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pt-card:hover .pt-card__image img {
    transform: scale(1.05);
}

.pt-card__price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pt-card__price small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.pt-card__badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pt-card__body {
    padding: 16px;
}

.pt-card__title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pt-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.pt-card__location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--brand);
}

.pt-card__specs {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.pt-card__spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pt-card__spec svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
}

.pt-card__spec strong {
    font-weight: 600;
    color: var(--text-primary);
}

.pt-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: rgba(248, 250, 251, 0.5);
}

.pt-card__rega {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.pt-card__rega svg {
    width: 14px;
    height: 14px;
}

.pt-card__actions {
    display: flex;
    gap: 6px;
}

.pt-card__action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.pt-card__action-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(var(--brand-rgb), 0.04);
}

.pt-card__action-btn svg {
    width: 16px;
    height: 16px;
}

/* Badges */
.pt-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.pt-badge--featured {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: #fff;
}

.pt-badge--featured i {
    font-size: 0.65rem;
}

.pt-badge--sale {
    background: rgba(56, 161, 105, 0.12);
    color: #276749;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.pt-badge--rent {
    background: rgba(49, 130, 206, 0.12);
    color: #2a4365;
    border: 1px solid rgba(49, 130, 206, 0.2);
}

.pt-badge--rega {
    background: rgba(56, 161, 105, 0.12);
    color: #276749;
}

/* Card as link */
a.pt-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

/* Card date */
.pt-card__date {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pt-card__date i {
    font-size: 0.72rem;
}

/* --- 6. Property Grid --- */
.pt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pt-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.pt-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

/* --- 7. Section Headers --- */
.pt-section {
    padding: 48px 0 24px;
}

.pt-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}

.pt-section__title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.pt-section__subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 400;
}

.pt-section__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand);
    white-space: nowrap;
    transition: gap var(--transition);
}

.pt-section__more:hover {
    gap: 10px;
}

.pt-section__more svg {
    width: 16px;
    height: 16px;
    transform: scaleX(-1);
}

/* --- 8. Search Page --- */
.pt-search-layout {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    min-height: calc(100vh - 68px);
}

.pt-filters {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 92px;
    align-self: flex-start;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.pt-filters::-webkit-scrollbar {
    width: 4px;
}

.pt-filters::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.pt-filters__title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pt-filters__clear {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-secondary);
}

.pt-filters__group {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.pt-filters__group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pt-filters__group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 0;
    margin-bottom: 12px;
    user-select: none;
}

.pt-filters__group-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pt-filters__group-toggle {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: transform var(--transition);
}

.pt-filters__group.collapsed .pt-filters__group-toggle {
    transform: rotate(-90deg);
}

.pt-filters__group.collapsed .pt-filters__group-body {
    display: none;
}

.pt-filters__range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pt-filters__range-separator {
    color: var(--text-light);
    font-size: 0.85rem;
}

.pt-search-main {
    flex: 1;
    min-width: 0;
}

.pt-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pt-active-filters__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(var(--brand-rgb), 0.06);
    border: 1px solid rgba(var(--brand-rgb), 0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--brand-dark);
    font-weight: 500;
}

.pt-active-filters__chip-remove {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--brand-rgb), 0.12);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    padding: 0;
    color: var(--brand);
}

.pt-active-filters__chip-remove:hover {
    background: var(--brand);
    color: #fff;
}

.pt-active-filters__chip-remove svg {
    width: 10px;
    height: 10px;
}

.pt-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.pt-results-header__count {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pt-results-header__count strong {
    color: var(--text-primary);
    font-weight: 700;
}

.pt-results-header__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pt-results-header__sort {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--text-primary);
    background: #fff;
    direction: rtl;
    cursor: pointer;
}

.pt-results-header__view-toggle {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pt-results-header__view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.pt-results-header__view-btn.active {
    background: var(--brand);
    color: #fff;
}

.pt-results-header__view-btn svg {
    width: 16px;
    height: 16px;
}

/* --- 9. Property Detail --- */
.pt-detail {
    padding-bottom: 60px;
}

.pt-detail__layout {
    display: flex;
    gap: 28px;
    padding-top: 24px;
}

.pt-detail__main {
    flex: 1;
    min-width: 0;
}

.pt-detail__sidebar {
    width: 360px;
    flex-shrink: 0;
}

/* Gallery */
.pt-gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.pt-gallery__main {
    aspect-ratio: 16 / 9;
    background: var(--bg-light);
    overflow: hidden;
    cursor: pointer;
}

.pt-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pt-gallery__main:hover img {
    transform: scale(1.03);
}

.pt-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 4px;
}

.pt-gallery__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
}

.pt-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition);
}

.pt-gallery__thumb:hover img {
    opacity: 0.85;
}

.pt-gallery__more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.6);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pt-gallery__counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pt-gallery__counter svg {
    width: 14px;
    height: 14px;
}

/* Detail header */
.pt-detail__header {
    margin-bottom: 24px;
}

.pt-detail__title {
    font-family: var(--font-primary);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.pt-detail__location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.pt-detail__location svg {
    width: 16px;
    height: 16px;
    color: var(--brand);
}

.pt-detail__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pt-detail__price {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand);
}

.pt-detail__price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pt-detail__share-actions {
    display: flex;
    gap: 8px;
}

/* Specs grid */
.pt-detail__specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.pt-detail__spec-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.pt-detail__spec-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    background: rgba(var(--brand-rgb), 0.08);
    border-radius: 10px;
    color: var(--brand);
}

.pt-detail__spec-icon svg {
    width: 18px;
    height: 18px;
}

.pt-detail__spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.pt-detail__spec-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Description */
.pt-detail__section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.pt-detail__section-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.pt-detail__description {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    white-space: pre-line;
}

.pt-detail__description.truncated {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.pt-detail__description.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #fff, transparent);
}

.pt-detail__read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-secondary);
}

/* Features grid */
.pt-detail__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pt-detail__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.pt-detail__feature svg {
    width: 16px;
    height: 16px;
    color: var(--brand);
    flex-shrink: 0;
}

/* Map container */
.pt-detail__map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    background: var(--bg-light);
}

/* Inquiry form (sidebar) */
.pt-inquiry {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 92px;
}

.pt-inquiry__title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.pt-inquiry__agent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.pt-inquiry__agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--border);
}

.pt-inquiry__agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-inquiry__agent-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.pt-inquiry__agent-company {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pt-inquiry__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pt-inquiry__phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.pt-inquiry__phone-btn:hover {
    background: var(--brand-dark);
}

.pt-inquiry__whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.pt-inquiry__whatsapp-btn:hover {
    background: #1fba59;
}

/* --- 10. Agent Card --- */
.pt-agent-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

.pt-agent-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.pt-agent-card__logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    border: 2px solid var(--border);
}

.pt-agent-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-agent-card__name {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pt-agent-card__type {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pt-agent-card__stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.pt-agent-card__stat {
    text-align: center;
}

.pt-agent-card__stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand);
}

.pt-agent-card__stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --- 11. Agent Profile --- */
.pt-agent-profile {
    margin-bottom: 32px;
}

.pt-agent-profile__cover {
    height: 240px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.pt-agent-profile__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-agent-profile__info {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: -50px;
    padding-inline: 28px;
    position: relative;
    z-index: 2;
}

.pt-agent-profile__avatar {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
    background: #fff;
    flex-shrink: 0;
}

.pt-agent-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-agent-profile__meta {
    flex: 1;
    padding-bottom: 8px;
}

.pt-agent-profile__name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pt-agent-profile__tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.pt-agent-profile__stats-bar {
    display: flex;
    gap: 32px;
    padding: 20px 28px;
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.pt-agent-profile__stat {
    text-align: center;
}

.pt-agent-profile__stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand);
}

.pt-agent-profile__stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* --- 12. Area Cards --- */
.pt-area-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: all var(--transition);
}

.pt-area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pt-area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pt-area-card:hover img {
    transform: scale(1.08);
}

.pt-area-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.pt-area-card__name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pt-area-card__count {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}

.pt-area-card__price {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* --- 13. Market Insights --- */
.pt-insights {
    padding: 48px 0;
}

.pt-insights__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.pt-insights__stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.pt-insights__stat-card:hover {
    border-color: rgba(var(--brand-rgb), 0.2);
    box-shadow: var(--shadow);
}

.pt-insights__stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(var(--brand-rgb), 0.08);
    border-radius: 12px;
    color: var(--brand);
}

.pt-insights__stat-icon svg {
    width: 20px;
    height: 20px;
}

.pt-insights__stat-value {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.pt-insights__stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.pt-insights__stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 8px;
    padding: 3px 8px;
    border-radius: 6px;
}

.pt-insights__stat-change--up {
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

.pt-insights__stat-change--down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.pt-insights__chart {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    min-height: 300px;
}

.pt-insights__chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pt-insights__chart-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.pt-insights__chart-body {
    width: 100%;
    min-height: 260px;
}

/* --- 14. Footer --- */
.pt-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
    margin-top: 60px;
}

.pt-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.pt-footer__brand {
    margin-bottom: 16px;
}

.pt-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pt-footer__brand-logo img {
    height: 32px;
}

.pt-footer__brand-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.pt-footer__brand-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pt-footer__social {
    display: flex;
    gap: 10px;
}

.pt-footer__social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.pt-footer__social-link:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.pt-footer__social-link svg {
    width: 18px;
    height: 18px;
}

.pt-footer__heading {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pt-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pt-footer__link {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition);
}

.pt-footer__link:hover {
    color: #fff;
    padding-inline-start: 6px;
}

.pt-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
}

.pt-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.pt-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.pt-footer__bottom-links a:hover {
    color: #fff;
}

/* --- 15. Pagination --- */
.pt-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 0;
}

.pt-pagination__btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-secondary);
}

.pt-pagination__btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.pt-pagination__btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 700;
}

.pt-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pt-pagination__btn svg {
    width: 16px;
    height: 16px;
}

.pt-pagination__dots {
    padding: 0 4px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- 16. Badges --- */
.pt-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
}

.pt-badge--featured {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
}

.pt-badge--verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pt-badge--new {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pt-badge--exclusive {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
}

.pt-badge--sale {
    background: rgba(var(--brand-rgb), 0.1);
    color: var(--brand);
    border: 1px solid rgba(var(--brand-rgb), 0.2);
}

.pt-badge--rent {
    background: rgba(124, 124, 124, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(124, 124, 124, 0.15);
}

.pt-badge svg {
    width: 12px;
    height: 12px;
}

/* --- 17. Buttons --- */
.pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 0.925rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.pt-btn svg {
    width: 18px;
    height: 18px;
}

.pt-btn--primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.pt-btn--primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.25);
}

.pt-btn--secondary {
    background: var(--bg-light);
    color: var(--text-primary);
    border-color: var(--border);
}

.pt-btn--secondary:hover {
    background: #fff;
    border-color: var(--brand);
    color: var(--brand);
}

.pt-btn--outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.pt-btn--outline:hover {
    background: var(--brand);
    color: #fff;
}

.pt-btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
    padding: 10px 16px;
}

.pt-btn--ghost:hover {
    background: var(--bg-light);
    color: var(--brand);
}

.pt-btn--sm {
    padding: 8px 16px;
    font-size: 0.82rem;
    border-radius: 8px;
}

.pt-btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.pt-btn--block {
    width: 100%;
}

.pt-btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
}

.pt-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* --- 18. Form Controls --- */
.pt-form-group {
    margin-bottom: 16px;
}

.pt-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pt-input,
.pt-select,
.pt-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 0.925rem;
    color: var(--text-primary);
    background: #fff;
    transition: all var(--transition);
    direction: rtl;
}

.pt-input::placeholder,
.pt-textarea::placeholder {
    color: var(--text-light);
}

.pt-input:focus,
.pt-select:focus,
.pt-textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.08);
}

.pt-input:disabled,
.pt-select:disabled {
    background: var(--bg-light);
    opacity: 0.7;
    cursor: not-allowed;
}

.pt-input--error,
.pt-select--error {
    border-color: #ef4444;
}

.pt-input--error:focus,
.pt-select--error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.pt-form-error {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
}

.pt-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C7C7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 36px;
}

.pt-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

.pt-checkbox-group,
.pt-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pt-checkbox,
.pt-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.pt-checkbox input,
.pt-radio input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
    cursor: pointer;
}

.pt-input-group {
    position: relative;
}

.pt-input-group .pt-input {
    padding-right: 44px;
}

.pt-input-group__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.pt-input-group__icon svg {
    width: 18px;
    height: 18px;
}

/* --- 19. Loading Skeleton --- */
.pt-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: pt-shimmer 1.4s ease infinite;
    border-radius: 8px;
}

.pt-skeleton--text {
    height: 16px;
    margin-bottom: 10px;
}

.pt-skeleton--text-sm {
    height: 12px;
    width: 60%;
}

.pt-skeleton--title {
    height: 24px;
    width: 70%;
    margin-bottom: 12px;
}

.pt-skeleton--image {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
}

.pt-skeleton--avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.pt-skeleton--card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pt-skeleton--card .pt-skeleton--image {
    border-radius: 0;
}

.pt-skeleton--btn {
    height: 44px;
    width: 120px;
    border-radius: var(--radius);
}

/* --- 20. Lightbox --- */
.pt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pt-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.pt-lightbox__close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 10;
}

.pt-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pt-lightbox__close svg {
    width: 24px;
    height: 24px;
}

.pt-lightbox__image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    animation: pt-fadeIn 0.3s ease;
}

.pt-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
}

.pt-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pt-lightbox__nav svg {
    width: 24px;
    height: 24px;
}

.pt-lightbox__nav--prev {
    right: 20px;
}

.pt-lightbox__nav--next {
    left: 20px;
}

.pt-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.pt-lightbox__thumbs {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.pt-lightbox__thumb {
    width: 56px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity var(--transition);
    border: 2px solid transparent;
}

.pt-lightbox__thumb.active,
.pt-lightbox__thumb:hover {
    opacity: 1;
    border-color: #fff;
}

.pt-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 21. Map --- */
.pt-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-light);
}

.pt-map--sm {
    height: 200px;
}

.pt-map--md {
    height: 300px;
}

.pt-map--lg {
    height: 450px;
}

.pt-map--full {
    height: calc(100vh - 68px);
}

.pt-map iframe,
.pt-map > div {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* --- 22. Mortgage Calculator --- */
.pt-calc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pt-calc__title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pt-calc__title svg {
    width: 20px;
    height: 20px;
    color: var(--brand);
}

.pt-calc__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.pt-calc__grid .pt-form-group {
    margin-bottom: 0;
}

.pt-calc__result {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.04), rgba(var(--brand-rgb), 0.08));
    border: 1px solid rgba(var(--brand-rgb), 0.12);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.pt-calc__result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.pt-calc__result-value {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand);
}

.pt-calc__result-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.pt-calc__breakdown {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(var(--brand-rgb), 0.2);
}

.pt-calc__breakdown-item {
    text-align: center;
}

.pt-calc__breakdown-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pt-calc__breakdown-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* --- 23. Breadcrumb --- */
.pt-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0;
    font-size: 0.85rem;
}

.pt-breadcrumb__item {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.pt-breadcrumb__item:hover {
    color: var(--brand);
}

.pt-breadcrumb__item.active {
    color: var(--text-primary);
    font-weight: 600;
    pointer-events: none;
}

.pt-breadcrumb__separator {
    color: var(--text-light);
    font-size: 0.7rem;
    transform: scaleX(-1);
    display: inline-flex;
}

.pt-breadcrumb__separator svg {
    width: 12px;
    height: 12px;
}

/* --- 24. Toast / Alert --- */
.pt-toast-container {
    position: fixed;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    width: 100%;
    max-width: 420px;
    padding-inline: 20px;
}

.pt-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-right: 4px solid var(--brand);
    pointer-events: auto;
    animation: pt-slideDown 0.35s ease;
}

.pt-toast--success {
    border-right-color: var(--success);
}

.pt-toast--success .pt-toast__icon {
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

.pt-toast--error {
    border-right-color: #ef4444;
}

.pt-toast--error .pt-toast__icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.pt-toast--warning {
    border-right-color: var(--warning);
}

.pt-toast--warning .pt-toast__icon {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.08);
}

.pt-toast__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.pt-toast__icon svg {
    width: 18px;
    height: 18px;
}

.pt-toast__content {
    flex: 1;
    min-width: 0;
}

.pt-toast__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pt-toast__message {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.pt-toast__close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 6px;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.pt-toast__close:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.pt-toast__close svg {
    width: 14px;
    height: 14px;
}

.pt-toast--exit {
    animation: pt-slideUp 0.3s ease forwards;
}

/* --- 25. Empty State --- */
.pt-empty {
    text-align: center;
    padding: 60px 20px;
}

.pt-empty__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--text-light);
}

.pt-empty__icon svg {
    width: 36px;
    height: 36px;
}

.pt-empty__title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pt-empty__message {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* --- 26. Responsive --- */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-detail__layout {
        flex-direction: column;
    }

    .pt-detail__sidebar {
        width: 100%;
    }

    .pt-inquiry {
        position: static;
    }

    .pt-detail__specs {
        grid-template-columns: repeat(3, 1fr);
    }

    .pt-detail__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-insights__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-agent-profile__stats-bar {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pt-calc__grid {
        grid-template-columns: 1fr;
    }

    .pt-search-layout {
        flex-direction: column;
    }

    .pt-filters {
        width: 100%;
        position: static;
        max-height: none;
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    .pt-nav__links {
        display: none;
    }

    .pt-nav__hamburger {
        display: flex;
    }

    .pt-hero {
        min-height: 340px;
        padding: 40px 16px;
    }

    .pt-hero__title {
        font-size: 1.75rem;
    }

    .pt-hero__form {
        flex-direction: column;
    }

    .pt-hero__form-btn {
        width: 100%;
    }

    .pt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pt-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pt-section__title {
        font-size: 1.3rem;
    }

    .pt-detail__title {
        font-size: 1.3rem;
    }

    .pt-detail__price {
        font-size: 1.4rem;
    }

    .pt-detail__price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pt-detail__specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pt-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pt-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .pt-lightbox__thumbs {
        display: none;
    }

    .pt-agent-profile__cover {
        height: 160px;
    }

    .pt-agent-profile__info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -40px;
        padding-inline: 16px;
    }

    .pt-agent-profile__avatar {
        width: 80px;
        height: 80px;
    }

    .pt-results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pt-categories__card {
        width: 130px;
        padding: 18px 12px;
    }

    .pt-insights__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
    .pt-container {
        padding-inline: 16px;
    }

    .pt-grid {
        grid-template-columns: 1fr;
    }

    .pt-grid--3,
    .pt-grid--2 {
        grid-template-columns: 1fr;
    }

    .pt-hero {
        min-height: 300px;
        padding: 32px 12px;
    }

    .pt-hero__title {
        font-size: 1.45rem;
    }

    .pt-hero__subtitle {
        font-size: 0.95rem;
    }

    .pt-hero__search {
        padding: 6px;
        border-radius: var(--radius);
    }

    .pt-hero__tabs {
        border-radius: 8px;
    }

    .pt-hero__tab {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .pt-detail__specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pt-detail__features {
        grid-template-columns: 1fr;
    }

    .pt-detail__section {
        padding: 18px;
    }

    .pt-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-pagination__btn {
        min-width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }

    .pt-section__title {
        font-size: 1.15rem;
    }

    .pt-card__specs {
        gap: 10px;
    }

    .pt-card__spec {
        font-size: 0.78rem;
    }

    .pt-nav__inner {
        height: 56px;
    }

    .pt-nav__mobile {
        inset-top: 56px;
    }

    .pt-breadcrumb {
        font-size: 0.78rem;
    }

    .pt-toast-container {
        top: 72px;
    }

    .pt-insights__stat-card {
        padding: 14px;
    }

    .pt-insights__stat-value {
        font-size: 1.3rem;
    }

    .pt-agent-profile__name {
        font-size: 1.2rem;
    }

    .pt-area-card {
        aspect-ratio: 16 / 10;
    }

    .pt-calc__breakdown {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- 27. Animations --- */
@keyframes pt-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pt-slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes pt-slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pt-slideInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pt-shimmer {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: -100% 50%;
    }
}

@keyframes pt-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pt-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animation utility classes */
.pt-animate-fade {
    animation: pt-fadeIn 0.4s ease;
}

.pt-animate-slide-up {
    animation: pt-slideUp 0.4s ease reverse;
}

.pt-animate-slide-right {
    animation: pt-slideInRight 0.4s ease;
}

.pt-animate-pulse {
    animation: pt-pulse 1.5s ease infinite;
}

.pt-animate-spin {
    animation: pt-spin 1s linear infinite;
}

/* Stagger animation delays for grids */
.pt-stagger > :nth-child(1) { animation-delay: 0.05s; }
.pt-stagger > :nth-child(2) { animation-delay: 0.1s; }
.pt-stagger > :nth-child(3) { animation-delay: 0.15s; }
.pt-stagger > :nth-child(4) { animation-delay: 0.2s; }
.pt-stagger > :nth-child(5) { animation-delay: 0.25s; }
.pt-stagger > :nth-child(6) { animation-delay: 0.3s; }
.pt-stagger > :nth-child(7) { animation-delay: 0.35s; }
.pt-stagger > :nth-child(8) { animation-delay: 0.4s; }

.pt-stagger > * {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* --- 28. Print Styles --- */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .pt-nav,
    .pt-hero__search,
    .pt-footer,
    .pt-pagination,
    .pt-toast-container,
    .pt-lightbox,
    .pt-nav__hamburger,
    .pt-nav__mobile,
    .pt-card__action-btn,
    .pt-inquiry__phone-btn,
    .pt-inquiry__whatsapp-btn,
    .pt-results-header__view-toggle,
    .pt-active-filters__chip-remove {
        display: none !important;
    }

    .pt-container {
        max-width: 100%;
        padding: 0;
    }

    .pt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pt-card {
        page-break-inside: avoid;
        border: 1px solid #ddd !important;
    }

    .pt-card__image img {
        max-height: 200px;
    }

    .pt-detail__layout {
        display: block;
    }

    .pt-detail__sidebar {
        width: 100%;
        margin-top: 20px;
    }

    .pt-inquiry {
        position: static;
        border: 1px solid #ddd !important;
    }

    .pt-detail__section {
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555 !important;
    }

    .pt-breadcrumb a[href]::after,
    .pt-nav a[href]::after {
        content: none;
    }

    .pt-hero {
        min-height: auto;
        padding: 20px 0;
    }

    .pt-hero__title {
        color: #000 !important;
        font-size: 1.5rem;
    }
}

/* --- Utility helpers --- */
.pt-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pt-text-center { text-align: center; }
.pt-text-start { text-align: right; }
.pt-text-end { text-align: left; }

.pt-mt-0 { margin-top: 0; }
.pt-mt-1 { margin-top: 8px; }
.pt-mt-2 { margin-top: 16px; }
.pt-mt-3 { margin-top: 24px; }
.pt-mt-4 { margin-top: 32px; }

.pt-mb-0 { margin-bottom: 0; }
.pt-mb-1 { margin-bottom: 8px; }
.pt-mb-2 { margin-bottom: 16px; }
.pt-mb-3 { margin-bottom: 24px; }
.pt-mb-4 { margin-bottom: 32px; }

.pt-p-0 { padding: 0; }
.pt-p-1 { padding: 8px; }
.pt-p-2 { padding: 16px; }
.pt-p-3 { padding: 24px; }

.pt-d-none { display: none; }
.pt-d-flex { display: flex; }
.pt-d-grid { display: grid; }
.pt-d-block { display: block; }

.pt-gap-1 { gap: 8px; }
.pt-gap-2 { gap: 16px; }
.pt-gap-3 { gap: 24px; }

.pt-rounded { border-radius: var(--radius); }
.pt-rounded-lg { border-radius: var(--radius-lg); }

.pt-shadow { box-shadow: var(--shadow); }
.pt-shadow-lg { box-shadow: var(--shadow-lg); }

.pt-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pt-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pt-line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Reduced motion preference */
@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;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(var(--brand-rgb), 0.15);
    color: var(--text-primary);
}

/* ============================================================
   Agent / Organization Badges (Property Detail Page)
   ============================================================ */

/* Badges container */
.pt-agent-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

/* Individual badge */
.pt-agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    border: 1px solid transparent;
}

.pt-agent-badge i {
    font-size: 0.7rem;
}

/* Active badge */
.pt-agent-badge--active {
    background: rgba(56, 161, 105, 0.1);
    color: #276749;
    border-color: rgba(56, 161, 105, 0.25);
}

/* Expired badge */
.pt-agent-badge--expired {
    background: rgba(229, 62, 62, 0.08);
    color: #c53030;
    border-color: rgba(229, 62, 62, 0.2);
}

/* Verified badge */
.pt-agent-badge--verified {
    background: rgba(5, 145, 145, 0.1);
    color: var(--brand-dark);
    border-color: rgba(5, 145, 145, 0.25);
}

/* Extra links (website, email) */
.pt-agent-extra-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s;
}

.pt-agent-extra-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.pt-agent-extra-link i {
    font-size: 0.78rem;
}

/* Agent links row */
.pt-agent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* Organization logo in agent card */
.pt-agent-org-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid var(--border);
    background: #fff;
}

/* Agent card organization section */
.pt-agent-org-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pt-agent-org-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.pt-agent-org-type {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ============================================================
   Agent Card — Compact Professional Design (Agents List)
   ============================================================ */
.ac {
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}
.ac:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.ac__link {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
    color: inherit;
    padding: 18px;
}
/* Header: Logo + Identity */
.ac__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.ac__logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: #f8fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.ac__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.ac__identity {
    flex: 1;
    min-width: 0;
}
.ac__name {
    font-family: 'El Messiri', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ac__name-en {
    font-family: 'Alexandria', sans-serif;
    font-size: 0.72rem;
    color: var(--text-light);
    margin: 1px 0 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ac__type {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Zain', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 3px;
}
.ac__type i {
    font-size: 0.6rem;
}

/* Badges */
.ac__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}
.ac__badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 9px;
    border-radius: 16px;
    font-family: 'Zain', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
}
.ac__badge i { font-size: 0.6rem; }
.ac__badge--teal {
    background: rgba(5, 145, 145, 0.1);
    color: var(--brand-dark);
}
.ac__badge--green {
    background: rgba(56, 161, 105, 0.1);
    color: #276749;
}

/* Meta Row */
.ac__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
}
.ac__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Zain', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.ac__meta-item i {
    color: var(--brand);
    font-size: 0.72rem;
}

/* Contact Icons */
.ac__contacts {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.ac__contact {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 0.72rem;
    transition: background 0.2s, color 0.2s;
}
.ac:hover .ac__contact {
    background: rgba(5,145,145,0.08);
    color: var(--brand);
}

/* CTA Button */
.ac__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px;
    background: var(--bg-light);
    border-radius: 9px;
    font-family: 'Zain', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand);
    transition: background 0.2s, color 0.2s;
}
.ac:hover .ac__cta {
    background: var(--brand);
    color: #fff;
}
.ac__cta i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.ac:hover .ac__cta i {
    transform: translateX(-3px);
}

/* ============================================================
   Services Page (pt-svc-) — REGA/FAL Licensed Services Catalog
   ============================================================ */

/* --- Hero --- */
.pt-svc-hero {
    position: relative;
    padding: 100px 20px 64px;
    background: linear-gradient(135deg, #033e3e 0%, #059191 50%, #07b5b5 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.pt-svc-hero__bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
.pt-svc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}
.pt-svc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.pt-svc-hero__badge i {
    color: #fbbf24;
}
.pt-svc-hero__title {
    font-family: 'El Messiri', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}
.pt-svc-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 680px;
    margin-inline: auto;
}
.pt-svc-hero__stats {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.pt-svc-hero__stat {
    text-align: center;
}
.pt-svc-hero__stat-num {
    font-family: 'El Messiri', serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}
.pt-svc-hero__stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}
.pt-svc-hero__stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.25);
    align-self: stretch;
}

/* --- Service Cards Section --- */
.pt-svc-section {
    padding: 56px 0 32px;
    background: var(--bg-light);
}
.pt-svc-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    padding: 0;
    margin-bottom: 28px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(24px);
}
.pt-svc-card--visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.pt-svc-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: rgba(5,145,145,0.2);
}
.pt-svc-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px 0;
    flex-wrap: wrap;
}
.pt-svc-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.pt-svc-card__title-wrap {
    flex: 1;
    min-width: 180px;
}
.pt-svc-card__title {
    font-family: 'El Messiri', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}
.pt-svc-card__subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 2px 0 0;
    direction: ltr;
    text-align: right;
}
.pt-svc-card__fal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(5,145,145,0.08);
    color: #059191;
    white-space: nowrap;
}
.pt-svc-card__fal-badge i {
    font-size: 0.75rem;
}
.pt-svc-card__fal-badge--green {
    background: rgba(16,185,129,0.08);
    color: #059669;
}
.pt-svc-card__fal-badge--blue {
    background: rgba(59,130,246,0.08);
    color: #2563eb;
}
.pt-svc-card__fal-badge--amber {
    background: rgba(245,158,11,0.08);
    color: #d97706;
}
.pt-svc-card__fal-badge--purple {
    background: rgba(168,85,247,0.08);
    color: #7c3aed;
}
.pt-svc-card__desc {
    padding: 16px 32px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Service Items --- */
.pt-svc-card__items {
    padding: 20px 32px 8px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
}
.pt-svc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.pt-svc-item:hover {
    background: #fff;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.pt-svc-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--brand);
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.pt-svc-item__content {
    flex: 1;
    min-width: 0;
}
.pt-svc-item__name {
    font-family: 'El Messiri', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.4;
}
.pt-svc-item__desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}
.pt-svc-item__rega {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: rgba(16,185,129,0.08);
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
}

/* --- Card Footer --- */
.pt-svc-card__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px 24px;
    flex-wrap: wrap;
}
.pt-svc-card__price {
    font-family: 'Alexandria', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.pt-svc-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.25s ease;
    background: rgba(5,145,145,0.08);
    color: #059191;
}
.pt-svc-card__btn:hover {
    background: #059191;
    color: #fff;
    box-shadow: 0 4px 16px rgba(5,145,145,0.25);
}
.pt-svc-card__btn--purple { background: rgba(99,102,241,0.08); color: #6366f1; }
.pt-svc-card__btn--purple:hover { background: #6366f1; color: #fff; box-shadow: 0 4px 16px rgba(99,102,241,0.25); }
.pt-svc-card__btn--orange { background: rgba(234,88,12,0.08); color: #ea580c; }
.pt-svc-card__btn--orange:hover { background: #ea580c; color: #fff; box-shadow: 0 4px 16px rgba(234,88,12,0.25); }
.pt-svc-card__btn--green { background: rgba(16,185,129,0.08); color: #059669; }
.pt-svc-card__btn--green:hover { background: #059669; color: #fff; box-shadow: 0 4px 16px rgba(16,185,129,0.25); }
.pt-svc-card__btn--blue { background: rgba(59,130,246,0.08); color: #2563eb; }
.pt-svc-card__btn--blue:hover { background: #2563eb; color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,0.25); }
.pt-svc-card__btn--amber { background: rgba(245,158,11,0.08); color: #d97706; }
.pt-svc-card__btn--amber:hover { background: #d97706; color: #fff; box-shadow: 0 4px 16px rgba(245,158,11,0.25); }
.pt-svc-card__btn--violet { background: rgba(168,85,247,0.08); color: #7c3aed; }
.pt-svc-card__btn--violet:hover { background: #7c3aed; color: #fff; box-shadow: 0 4px 16px rgba(168,85,247,0.25); }
.pt-svc-card__btn--pink { background: rgba(236,72,153,0.08); color: #db2777; }
.pt-svc-card__btn--pink:hover { background: #db2777; color: #fff; box-shadow: 0 4px 16px rgba(236,72,153,0.25); }

/* --- REGA Compliance Section --- */
.pt-svc-rega {
    padding: 64px 0;
    background: linear-gradient(135deg, #033e3e 0%, #059191 100%);
    color: #fff;
}
.pt-svc-rega__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.pt-svc-rega__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}
.pt-svc-rega__title {
    font-family: 'El Messiri', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pt-svc-rega__desc {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
}
.pt-svc-rega__licenses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
    text-align: right;
}
.pt-svc-rega__license {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}
.pt-svc-rega__license i {
    color: #fbbf24;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.pt-svc-rega__badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.pt-svc-rega__badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    opacity: 0.85;
    font-weight: 600;
}
.pt-svc-rega__badge-item i {
    font-size: 1.2rem;
}

/* --- CTA Section --- */
.pt-svc-cta {
    padding: 72px 0;
    background: var(--bg-light);
}
.pt-svc-cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.pt-svc-cta__title {
    font-family: 'El Messiri', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.pt-svc-cta__desc {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.9;
}
.pt-svc-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pt-svc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.pt-svc-cta__btn--primary {
    background: #059191;
    color: #fff;
    border-color: #059191;
}
.pt-svc-cta__btn--primary:hover {
    background: #033e3e;
    border-color: #033e3e;
    box-shadow: 0 6px 20px rgba(5,145,145,0.25);
}
.pt-svc-cta__btn--outline {
    background: transparent;
    color: #059191;
    border-color: #059191;
}
.pt-svc-cta__btn--outline:hover {
    background: #059191;
    color: #fff;
}

/* --- Services Page Responsive --- */
@media (max-width: 768px) {
    .pt-svc-hero {
        padding: 80px 16px 48px;
    }
    .pt-svc-hero__stats {
        gap: 20px;
    }
    .pt-svc-card__header {
        padding: 20px 20px 0;
    }
    .pt-svc-card__desc {
        padding: 12px 20px 0;
    }
    .pt-svc-card__items {
        padding: 16px 20px 4px;
        grid-template-columns: 1fr;
    }
    .pt-svc-card__footer {
        padding: 12px 20px 20px;
    }
    .pt-svc-rega__licenses {
        grid-template-columns: 1fr;
    }
    .pt-svc-rega__badges {
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .pt-svc-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .pt-svc-card__fal-badge {
        align-self: flex-start;
    }
    .pt-svc-item {
        flex-direction: column;
        gap: 10px;
    }
    .pt-svc-item__rega {
        align-self: flex-start;
        margin-top: 0;
    }
    .pt-svc-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .pt-svc-cta__btn {
        justify-content: center;
    }
}

/* ============================================================
   Pricing Page (pricing-) — Subscription Plans & Pricing
   ============================================================ */

/* --- Hero --- */
.pricing-hero {
    position: relative;
    padding: 100px 20px 64px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.pricing-hero__bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.pricing-hero__shape {
    position: absolute;
    border-radius: 50%;
}
.pricing-hero__shape--1 {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5,145,145,0.15), transparent 70%);
}
.pricing-hero__shape--2 {
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
}
.pricing-hero__shape--3 {
    top: 20%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
}
.pricing-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.pricing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5,145,145,0.15);
    color: #06d6a0;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Zain', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(5,145,145,0.2);
    backdrop-filter: blur(6px);
}
.pricing-hero__badge i {
    color: #fbbf24;
}
.pricing-hero__title {
    font-family: 'El Messiri', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
}
.pricing-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.8);
    margin: 0 0 36px;
    line-height: 1.8;
}

/* --- Billing Toggle --- */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
}
.pricing-toggle__label {
    font-family: 'Zain', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pricing-toggle__label--active {
    color: #fff;
}
.pricing-toggle__save {
    background: linear-gradient(135deg, #059191, #06d6a0);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}
.pricing-toggle__switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.pricing-toggle__switch--annual {
    background: var(--brand);
}
.pricing-toggle__knob {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.pricing-toggle__switch--annual .pricing-toggle__knob {
    transform: translateX(24px);
}
[dir="rtl"] .pricing-toggle__switch--annual .pricing-toggle__knob {
    transform: translateX(-24px);
}

/* --- Pricing Cards Section --- */
.pricing-cards-section {
    padding: 0 0 72px;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* --- Pricing Card --- */
.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    padding: 8px 16px;
    font-family: 'Zain', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #059191, #06d6a0);
    border-radius: 0 0 12px 12px;
    margin: 0 24px;
}

/* Card Header */
.pricing-card__header {
    text-align: center;
    padding-top: 8px;
    margin-bottom: 20px;
}
.pricing-card--popular .pricing-card__header {
    padding-top: 36px;
}
.pricing-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 14px;
}
.pricing-card__name {
    font-family: 'El Messiri', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
}
.pricing-card__desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Card Price */
.pricing-card__price {
    text-align: center;
    padding: 16px 0 8px;
    margin-bottom: 4px;
}
.pricing-card__amount {
    font-family: 'El Messiri', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}
.pricing-card__currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}
.pricing-card__period {
    font-size: 0.85rem;
    color: var(--text-light);
}
.pricing-card__annual-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--brand);
    font-weight: 600;
    min-height: 20px;
    margin-bottom: 12px;
}

/* Card Features */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    flex-grow: 1;
}
.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-card__feature:last-child {
    border-bottom: none;
}
.pricing-card__feature i {
    width: 18px;
    text-align: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.pricing-card__feature--included i {
    color: #10b981;
}
.pricing-card__feature--excluded {
    opacity: 0.5;
}
.pricing-card__feature--excluded i {
    color: #e53e3e;
}

/* Card Button */
.pricing-card__btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Zain', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}
.pricing-card__btn--outline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}
.pricing-card__btn--outline:hover {
    background: var(--bg-light);
    border-color: var(--text-secondary);
}
.pricing-card__btn--primary {
    background: rgba(59,130,246,0.1);
    color: #2563eb;
    border-color: rgba(59,130,246,0.2);
}
.pricing-card__btn--primary:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 6px 20px rgba(59,130,246,0.3);
}
.pricing-card__btn--accent {
    background: linear-gradient(135deg, #059191, #06d6a0);
    color: #fff;
    border-color: transparent;
}
.pricing-card__btn--accent:hover {
    box-shadow: 0 6px 24px rgba(5,145,145,0.35);
    transform: translateY(-1px);
}
.pricing-card__btn--dark {
    background: #1e293b;
    color: #fff;
    border-color: #1e293b;
}
.pricing-card__btn--dark:hover {
    background: #0f172a;
    box-shadow: 0 6px 20px rgba(15,23,42,0.3);
}
.pricing-card__btn--gold {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    border-color: transparent;
}
.pricing-card__btn--gold:hover {
    box-shadow: 0 6px 24px rgba(217,119,6,0.35);
    transform: translateY(-1px);
}

/* --- Card Theme Variants --- */
/* Free */
.pricing-card--free .pricing-card__icon {
    background: rgba(156,163,175,0.12);
    color: #6b7280;
}
/* Starter - Blue */
.pricing-card--starter .pricing-card__icon {
    background: rgba(59,130,246,0.12);
    color: #2563eb;
}
.pricing-card--starter {
    border-color: rgba(59,130,246,0.15);
}
/* Professional - Green (Popular) */
.pricing-card--professional {
    border-color: rgba(5,145,145,0.25);
    background: linear-gradient(180deg, rgba(5,145,145,0.02) 0%, #fff 100%);
    box-shadow: 0 8px 32px rgba(5,145,145,0.1);
}
.pricing-card--professional:hover {
    box-shadow: 0 20px 60px rgba(5,145,145,0.18);
}
.pricing-card--professional .pricing-card__icon {
    background: rgba(5,145,145,0.12);
    color: #059191;
}
.pricing-card--professional .pricing-card__amount {
    color: #059191;
}
/* Enterprise - Dark */
.pricing-card--enterprise {
    background: #1e293b;
    border-color: #334155;
    color: #fff;
}
.pricing-card--enterprise .pricing-card__icon {
    background: rgba(255,255,255,0.1);
    color: #94a3b8;
}
.pricing-card--enterprise .pricing-card__name,
.pricing-card--enterprise .pricing-card__amount {
    color: #fff;
}
.pricing-card--enterprise .pricing-card__desc,
.pricing-card--enterprise .pricing-card__period,
.pricing-card--enterprise .pricing-card__currency {
    color: rgba(255,255,255,0.6);
}
.pricing-card--enterprise .pricing-card__feature {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.06);
}
.pricing-card--enterprise .pricing-card__annual-note {
    color: #06d6a0;
}
/* Developer - Gold */
.pricing-card--developer {
    border-color: rgba(217,119,6,0.2);
    background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, #fff 100%);
}
.pricing-card--developer .pricing-card__icon {
    background: rgba(245,158,11,0.12);
    color: #d97706;
}
.pricing-card--developer .pricing-card__amount {
    color: #d97706;
}

/* --- Services Section --- */
.pricing-services {
    padding: 72px 0;
    background: #fff;
}
.pricing-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.pricing-section-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}
.pricing-section-subtitle {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}
.pricing-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pricing-service-group {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.pricing-service-group:hover {
    border-color: rgba(5,145,145,0.2);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.pricing-service-group__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(5,145,145,0.1);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.pricing-service-group__title {
    font-family: 'El Messiri', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}
.pricing-service-group__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-service-group__list li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.pricing-service-group__list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}
[dir="rtl"] .pricing-service-group__list li {
    padding: 6px 20px 6px 0;
}

/* --- Addons Table --- */
.pricing-addons {
    padding: 72px 0;
    background: var(--bg-light);
}
.pricing-addons-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.pricing-addons-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.pricing-addons-table thead {
    background: #f8fafb;
}
.pricing-addons-table th {
    padding: 16px 24px;
    font-family: 'El Messiri', serif;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}
.pricing-addons-table td {
    padding: 16px 24px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    vertical-align: middle;
}
.pricing-addons-table tbody tr:hover {
    background: rgba(5,145,145,0.02);
}
.pricing-addons-table td i {
    margin-left: 8px;
    width: 20px;
    text-align: center;
}
[dir="rtl"] .pricing-addons-table td i {
    margin-left: 0;
    margin-right: 0;
}
.text-warning { color: #d97706; }
.text-info { color: #3b82f6; }
.text-brand { color: var(--brand); }
.text-success { color: #10b981; }
.text-danger { color: #e53e3e; }
.text-purple { color: #7c3aed; }
.text-dark { color: #334155; }

/* --- Comparison Table --- */
.pricing-compare {
    padding: 72px 0;
    background: #fff;
}
.pricing-compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 800px;
}
.pricing-compare-table thead {
    background: #0f172a;
    color: #fff;
}
.pricing-compare-table th {
    padding: 16px 18px;
    font-family: 'El Messiri', serif;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}
.pricing-compare-table__feature-col {
    text-align: right !important;
    min-width: 180px;
}
.pricing-compare-table__highlight {
    background: rgba(5,145,145,0.06) !important;
}
.pricing-compare-table thead .pricing-compare-table__highlight {
    background: rgba(5,145,145,0.3) !important;
}
.pricing-compare-table td {
    padding: 12px 18px;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    vertical-align: middle;
}
.pricing-compare-table td:first-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
}
.pricing-compare-table__group-row {
    background: var(--bg-light);
}
.pricing-compare-table__group-row td {
    font-family: 'El Messiri', serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary);
    text-align: right !important;
    padding: 14px 18px;
}
.pricing-compare-table__group-row td i {
    margin-left: 8px;
    color: var(--brand);
}
[dir="rtl"] .pricing-compare-table__group-row td i {
    margin-left: 0;
    margin-right: 0;
}
.pricing-compare-yes {
    color: #10b981;
    font-size: 0.85rem;
}
.pricing-compare-no {
    color: #d1d5db;
    font-size: 0.8rem;
}
.pricing-compare-table tbody tr:hover {
    background: rgba(5,145,145,0.02);
}

/* --- FAQ Section --- */
.pricing-faq {
    padding: 72px 0;
    background: var(--bg-light);
}
.pricing-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.pricing-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.pricing-faq-item:hover {
    box-shadow: var(--shadow-sm);
}
.pricing-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'El Messiri', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    gap: 12px;
}
.pricing-faq-item__question i {
    color: var(--text-light);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.pricing-faq-item--open .pricing-faq-item__question i {
    transform: rotate(180deg);
}
.pricing-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.pricing-faq-item--open .pricing-faq-item__answer {
    max-height: 300px;
    padding: 0 24px 18px;
}
.pricing-faq-item__answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}

/* --- CTA Section --- */
.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #033e3e 0%, #059191 50%, #06d6a0 100%);
    text-align: center;
    color: #fff;
}
.pricing-cta__content {
    max-width: 600px;
    margin: 0 auto;
}
.pricing-cta__title {
    font-family: 'El Messiri', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 12px;
}
.pricing-cta__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
    line-height: 1.8;
}
.pricing-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pricing-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}
.pricing-cta__btn--primary {
    background: #fff;
    color: #059191;
    border-color: #fff;
}
.pricing-cta__btn--primary:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.pricing-cta__btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.pricing-cta__btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}
.pricing-cta__note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* --- Pricing Responsive --- */
@media (max-width: 1280px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pricing-hero {
        padding: 80px 16px 48px;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .pricing-cards-section {
        margin-top: -20px;
    }
    .pricing-services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-toggle {
        padding: 6px 16px;
        gap: 10px;
    }
    .pricing-toggle__label {
        font-size: 0.85rem;
    }
    .pricing-compare-table {
        font-size: 0.8rem;
    }
    .pricing-compare-table th,
    .pricing-compare-table td {
        padding: 10px 12px;
    }
    .pricing-faq-item__question {
        padding: 14px 18px;
        font-size: 0.92rem;
    }
    .pricing-faq-item--open .pricing-faq-item__answer {
        padding: 0 18px 14px;
    }
    .pricing-cta {
        padding: 56px 0;
    }
    .pricing-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .pricing-cards {
        max-width: 100%;
    }
    .pricing-card {
        padding: 24px 20px;
    }
    .pricing-addons-table th,
    .pricing-addons-table td {
        padding: 12px 16px;
        font-size: 0.84rem;
    }
}

/* ============================================================
   Careers Pages — pt-career- prefix
   ============================================================ */

/* --- Careers Hero --- */
.pt-career-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}
.pt-career-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(5,145,145,0.15), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(5,145,145,0.08), transparent 60%);
    z-index: 0;
}
.pt-career-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.pt-career-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5,145,145,0.12);
    color: #06b5b5;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(5,145,145,0.2);
}
.pt-career-hero__title {
    font-family: 'El Messiri', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4;
}
.pt-career-hero__title span {
    color: #06b5b5;
}
.pt-career-hero__subtitle {
    font-family: 'Zain', sans-serif;
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.pt-career-hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.pt-career-hero__stat {
    text-align: center;
}
.pt-career-hero__stat-number {
    font-family: 'El Messiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #06b5b5;
}
.pt-career-hero__stat-label {
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* --- Container --- */
.pt-career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Filter Bar --- */
.pt-career-filters {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 60px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pt-career-filters__bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.pt-career-filters__group {
    flex: 1;
    min-width: 160px;
}
.pt-career-filters__group--search {
    flex: 1.5;
    position: relative;
}
.pt-career-filters__select,
.pt-career-filters__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Zain', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-light);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.pt-career-filters__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 32px;
}
.pt-career-filters__select:focus,
.pt-career-filters__input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
}
.pt-career-filters__search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.pt-career-filters__input {
    padding-right: 38px;
}
.pt-career-filters__count {
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* --- Jobs Grid --- */
.pt-career-jobs {
    padding: 40px 0 60px;
    background: var(--bg-light);
    min-height: 400px;
}
.pt-career-jobs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

/* --- Job Card --- */
.pt-career-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pt-career-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.pt-career-card__header {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 24px;
}
.pt-career-card__badges {
    display: flex;
    gap: 8px;
}
.pt-career-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Zain', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
}
.pt-career-card__badge--urgent {
    background: rgba(229,62,62,0.1);
    color: #e53e3e;
}
.pt-career-card__badge--featured {
    background: rgba(237,137,54,0.1);
    color: #ed8936;
}
.pt-career-card__body {
    flex: 1;
}
.pt-career-card__title {
    font-family: 'El Messiri', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}
.pt-career-card:hover .pt-career-card__title {
    color: var(--brand);
}
.pt-career-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.pt-career-card__dept {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'Zain', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid;
}
.pt-career-card__location {
    font-family: 'Zain', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
}
.pt-career-card__location i {
    margin-left: 4px;
    color: var(--brand);
}
.pt-career-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.pt-career-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-family: 'Zain', sans-serif;
    font-size: 0.78rem;
    color: var(--text-secondary);
}
.pt-career-card__tag i {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.pt-career-card__salary {
    font-family: 'Zain', sans-serif;
    font-size: 0.88rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 8px;
}
.pt-career-card__salary i {
    margin-left: 6px;
}
.pt-career-card__license {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(49,130,206,0.08);
    color: var(--info);
    border-radius: 6px;
    font-family: 'Zain', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
}
.pt-career-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}
.pt-career-card__date {
    font-family: 'Zain', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.pt-career-card__date i {
    margin-left: 4px;
}
.pt-career-card__apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand);
    transition: var(--transition);
}
.pt-career-card:hover .pt-career-card__apply-btn {
    color: var(--brand-dark);
}

/* --- Loading & Empty --- */
.pt-career-loading,
.pt-career-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}
.pt-career-loading i,
.pt-career-empty i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}
.pt-career-empty h3 {
    font-family: 'El Messiri', serif;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* --- Pagination --- */
.pt-career-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.pt-career-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    font-family: 'Zain', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.pt-career-pagination__btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.pt-career-pagination__btn--active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.pt-career-pagination__dots {
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    color: var(--text-muted);
}

/* --- Why Work With Us --- */
.pt-career-why {
    padding: 72px 0;
    background: #fff;
}
.pt-career-why__header {
    text-align: center;
    margin-bottom: 48px;
}
.pt-career-why__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(5,145,145,0.08);
    color: var(--brand);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Zain', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.pt-career-why__title {
    font-family: 'El Messiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.pt-career-why__subtitle {
    font-family: 'Zain', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}
.pt-career-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.pt-career-why__card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.pt-career-why__card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.pt-career-why__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.pt-career-why__card h3 {
    font-family: 'El Messiri', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.pt-career-why__card p {
    font-family: 'Zain', sans-serif;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Breadcrumb --- */
.pt-career-breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.pt-career-breadcrumb .pt-career-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.pt-career-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}
.pt-career-breadcrumb a:hover {
    color: var(--brand);
}
.pt-career-breadcrumb i {
    font-size: 0.65rem;
}

/* --- Job Detail Layout --- */
.pt-career-detail {
    padding: 40px 0 72px;
    background: var(--bg-light);
}
.pt-career-detail__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
.pt-career-detail__main {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pt-career-detail__header {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}
.pt-career-detail__title {
    font-family: 'El Messiri', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 12px 0 16px;
    line-height: 1.3;
}
.pt-career-detail__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pt-career-detail__meta-item {
    font-family: 'Zain', sans-serif;
    font-size: 0.88rem;
    color: var(--text-light);
}
.pt-career-detail__meta-item i {
    margin-left: 6px;
    color: var(--brand);
}
.pt-career-detail__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Detail sections */
.pt-career-detail__section {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}
.pt-career-detail__section h2 {
    font-family: 'El Messiri', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pt-career-detail__section h2 i {
    color: var(--brand);
    font-size: 1rem;
}
.pt-career-detail__content {
    font-family: 'Zain', sans-serif;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
}
.pt-career-detail__content p {
    margin-bottom: 8px;
}
.pt-career-detail__content ul {
    padding-right: 20px;
    margin-bottom: 12px;
}
.pt-career-detail__content ul li {
    margin-bottom: 6px;
    position: relative;
}
.pt-career-detail__content ul li::marker {
    color: var(--brand);
}

/* Skills tags */
.pt-career-detail__skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pt-career-detail__skill {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand-dark);
    border-radius: 20px;
    font-family: 'Zain', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Apply section */
.pt-career-detail__apply-section {
    text-align: center;
    padding: 32px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.pt-career-detail__apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Zain', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}
.pt-career-detail__apply-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Sidebar cards */
.pt-career-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}
.pt-career-detail__info-card,
.pt-career-detail__share-card,
.pt-career-detail__related-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
}
.pt-career-detail__info-card h3,
.pt-career-detail__share-card h3,
.pt-career-detail__related-card h3 {
    font-family: 'El Messiri', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pt-career-detail__info-card h3 i,
.pt-career-detail__share-card h3 i,
.pt-career-detail__related-card h3 i {
    color: var(--brand);
}
.pt-career-detail__info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.pt-career-detail__info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(226,232,240,0.6);
}
.pt-career-detail__info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.pt-career-detail__info-label {
    font-family: 'Zain', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pt-career-detail__info-label i {
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}
.pt-career-detail__info-value {
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.pt-career-detail__apply-btn--sidebar {
    margin-top: 4px;
}

/* Share buttons */
.pt-career-detail__share-btns {
    display: flex;
    gap: 10px;
}
.pt-career-detail__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}
.pt-career-detail__share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.pt-career-detail__share-btn--twitter:hover { background: #000; color: #fff; border-color: #000; }
.pt-career-detail__share-btn--linkedin:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.pt-career-detail__share-btn--whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.pt-career-detail__share-btn--copy:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Related jobs */
.pt-career-detail__related-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}
.pt-career-detail__related-item:last-child {
    border-bottom: none;
}
.pt-career-detail__related-item:hover .pt-career-detail__related-title {
    color: var(--brand);
}
.pt-career-detail__related-title {
    font-family: 'Zain', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: var(--transition);
}
.pt-career-detail__related-dept {
    font-family: 'Zain', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Application Modal --- */
.pt-career-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}
.pt-career-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(4px);
    z-index: 0;
}
.pt-career-modal__content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}
.pt-career-modal__content--sm {
    max-width: 480px;
}
.pt-career-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 2;
}
.pt-career-modal__header h2 {
    font-family: 'El Messiri', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pt-career-modal__header h2 i {
    color: var(--brand);
}
.pt-career-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.pt-career-modal__close:hover {
    background: rgba(229,62,62,0.1);
    color: var(--danger);
}
.pt-career-modal__body {
    padding: 32px;
}

/* --- Form Styles --- */
.pt-career-form__section {
    margin-bottom: 28px;
}
.pt-career-form__section-title {
    font-family: 'El Messiri', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.pt-career-form__section-title i {
    color: var(--brand);
    font-size: 0.9rem;
}
.pt-career-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.pt-career-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pt-career-form__field--full {
    grid-column: 1 / -1;
}
.pt-career-form__field label {
    font-family: 'Zain', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.pt-career-form__field label .required {
    color: var(--danger);
}
.pt-career-form__field input,
.pt-career-form__field select,
.pt-career-form__field textarea {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Zain', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-light);
    transition: var(--transition);
    width: 100%;
}
.pt-career-form__field input:focus,
.pt-career-form__field select:focus,
.pt-career-form__field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
    background: #fff;
}
.pt-career-form__field textarea {
    resize: vertical;
    min-height: 120px;
}
.pt-career-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}
.pt-career-form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
    flex-shrink: 0;
}

/* File upload */
.pt-career-form__upload {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-light);
}
.pt-career-form__upload:hover {
    border-color: var(--brand);
    background: rgba(var(--brand-rgb), 0.02);
}
.pt-career-form__upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
}
.pt-career-form__upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}
.pt-career-form__upload-placeholder i {
    font-size: 2rem;
    color: var(--text-muted);
}
.pt-career-form__upload-placeholder span {
    font-family: 'Zain', sans-serif;
    font-size: 0.9rem;
}
.pt-career-form__upload-placeholder small {
    font-family: 'Zain', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Form actions */
.pt-career-form__actions {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.pt-career-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Zain', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
}
.pt-career-form__submit:hover {
    background: var(--brand-dark);
    box-shadow: var(--shadow-md);
}
.pt-career-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.pt-career-form__cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Zain', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.pt-career-form__cancel:hover {
    background: rgba(229,62,62,0.05);
    border-color: var(--danger);
    color: var(--danger);
}

/* Success modal */
.pt-career-success {
    text-align: center;
    padding: 48px 32px;
}
.pt-career-success__icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}
.pt-career-success h2 {
    font-family: 'El Messiri', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.pt-career-success p {
    font-family: 'Zain', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .pt-career-detail__layout {
        grid-template-columns: 1fr;
    }
    .pt-career-detail__sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .pt-career-hero {
        padding: 80px 16px 48px;
        min-height: 340px;
    }
    .pt-career-hero__title {
        font-size: 1.6rem;
    }
    .pt-career-hero__stats {
        gap: 28px;
    }
    .pt-career-filters__bar {
        flex-direction: column;
    }
    .pt-career-filters__group {
        min-width: 100%;
    }
    .pt-career-jobs__grid {
        grid-template-columns: 1fr;
    }
    .pt-career-why__grid {
        grid-template-columns: 1fr;
    }
    .pt-career-detail__header {
        padding: 20px;
    }
    .pt-career-detail__title {
        font-size: 1.4rem;
    }
    .pt-career-detail__section {
        padding: 20px;
    }
    .pt-career-modal__body {
        padding: 20px;
    }
    .pt-career-modal__header {
        padding: 16px 20px;
    }
    .pt-career-form__grid {
        grid-template-columns: 1fr;
    }
    .pt-career-form__actions {
        flex-direction: column;
    }
    .pt-career-modal {
        padding: 20px 12px;
    }
}

@media (max-width: 480px) {
    .pt-career-hero__stat-number {
        font-size: 1.5rem;
    }
    .pt-career-card {
        padding: 18px;
    }
    .pt-career-card__title {
        font-size: 1rem;
    }
}
