/* Teknik Servis — Kurumsal vitrin */
:root {
    --hp-primary: #4f46e5;
    --hp-primary-rgb: 79, 70, 229;
    --hp-primary-dark: #3730a3;
    --hp-primary-soft: rgba(79, 70, 229, 0.1);
    --hp-accent: #06b6d4;
    --hp-bg: #f4f6fb;
    --hp-surface: #ffffff;
    --hp-text: #0f172a;
    --hp-muted: #64748b;
    --hp-border: rgba(15, 23, 42, 0.08);
    --hp-radius: 20px;
    --hp-radius-lg: 28px;
    --hp-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
    --hp-shadow-lg: 0 32px 64px -24px rgba(15, 23, 42, 0.18);
    --hp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --hp-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --hp-nav-h: 76px;
    --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--hp-nav-h) + 16px);
}

body.hp-page {
    margin: 0;
    font-family: var(--hp-font);
    color: var(--hp-text);
    background: var(--hp-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Arka plan mesh */
.hp-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(var(--hp-primary-rgb), 0.14), transparent 55%),
        radial-gradient(ellipse 60% 40% at 95% 20%, rgba(6, 182, 212, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(var(--hp-primary-rgb), 0.06), transparent 50%),
        var(--hp-bg);
}

/* Navbar */
.hp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--hp-nav-h);
    display: flex;
    align-items: center;
    transition: background 0.35s var(--hp-ease), box-shadow 0.35s var(--hp-ease), backdrop-filter 0.35s;
}

.hp-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 var(--hp-border), var(--hp-shadow);
}

.hp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hp-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--hp-text);
    font-family: var(--hp-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.hp-brand img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.hp-brand__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px -6px rgba(var(--hp-primary-rgb), 0.5);
}

.hp-nav__links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .hp-nav__links { display: flex; }
}

.hp-nav__links a {
    text-decoration: none;
    color: var(--hp-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.hp-nav__links a:hover,
.hp-nav__links a.is-active {
    color: var(--hp-primary);
    background: var(--hp-primary-soft);
}

.hp-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--hp-ease), box-shadow 0.25s, background 0.25s, color 0.25s;
    font-family: inherit;
}

.hp-btn:active { transform: scale(0.98); }

.hp-btn--primary {
    background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(var(--hp-primary-rgb), 0.55);
}

.hp-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(var(--hp-primary-rgb), 0.6);
}

.hp-btn--ghost {
    background: transparent;
    color: var(--hp-text);
    border: 1.5px solid var(--hp-border);
}

.hp-btn--ghost:hover {
    border-color: rgba(var(--hp-primary-rgb), 0.35);
    color: var(--hp-primary);
    background: var(--hp-primary-soft);
}

.hp-btn--lg {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
}

.hp-btn--block { width: 100%; }

.hp-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 12px;
    font-size: 1.35rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    .hp-menu-toggle { display: none; }
}

.hp-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.hp-mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
}

.hp-mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--hp-surface);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--hp-ease);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.hp-mobile-drawer.is-open .hp-mobile-drawer__panel {
    transform: translateX(0);
}

.hp-mobile-drawer__panel a {
    display: block;
    padding: 0.85rem 0;
    text-decoration: none;
    color: var(--hp-text);
    font-weight: 600;
    border-bottom: 1px solid var(--hp-border);
}

/* Hero */
.hp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--hp-nav-h) + 2rem) 0 4rem;
    overflow: hidden;
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(15, 23, 42, 0.35) 100%);
}

.hp-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

@media (min-width: 992px) {
    .hp-hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.hp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem 0.4rem 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.hp-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
    animation: hp-pulse 2s infinite;
}

@keyframes hp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hp-hero__title {
    font-family: var(--hp-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1rem;
}

.hp-hero__title span {
    background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero__lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 0 1.75rem;
    line-height: 1.7;
}

.hp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hp-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}

.hp-hero__feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.hp-hero__feat i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5b4fc;
    font-size: 1.1rem;
}

/* Hero mini kart — hızlı sorgu */
.hp-hero-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--hp-radius-lg);
    padding: 2rem;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hp-hero-card__head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hp-hero-card__head h3 {
    font-family: var(--hp-display);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--hp-text);
}

.hp-hero-card__head p {
    margin: 0;
    color: var(--hp-muted);
    font-size: 0.9rem;
}

.hp-field {
    margin-bottom: 1rem;
}

.hp-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hp-muted);
    margin-bottom: 0.4rem;
}

.hp-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--hp-text);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.hp-field input:focus {
    outline: none;
    border-color: var(--hp-primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--hp-primary-soft);
}

/* Stats */
.hp-stats {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
    padding: 0 1.25rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--hp-surface);
    border-radius: var(--hp-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid var(--hp-border);
}

@media (min-width: 768px) {
    .hp-stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.hp-stat {
    text-align: center;
    padding: 0.5rem;
}

.hp-stat__num {
    font-family: var(--hp-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1.2;
}

.hp-stat__label {
    font-size: 0.8rem;
    color: var(--hp-muted);
    font-weight: 600;
}

/* Sections */
.hp-section {
    padding: 5rem 0;
}

.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hp-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-primary);
    margin-bottom: 0.5rem;
}

.hp-section__title {
    font-family: var(--hp-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--hp-text);
}

.hp-section__desc {
    color: var(--hp-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hp-section--center { text-align: center; }

/* About */
.hp-about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hp-about { grid-template-columns: 1fr 1fr; }
}

.hp-about__visual {
    position: relative;
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--hp-primary-soft), rgba(6, 182, 212, 0.15));
    box-shadow: var(--hp-shadow-lg);
}

.hp-about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-about__visual--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--hp-primary);
}

.hp-about__chip {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--hp-surface);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--hp-shadow);
}

.hp-about__chip strong {
    display: block;
    font-family: var(--hp-display);
    font-size: 1.5rem;
    color: var(--hp-primary);
}

.hp-about__chip span {
    font-size: 0.8rem;
    color: var(--hp-muted);
    font-weight: 600;
}

.hp-about__text {
    color: var(--hp-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.hp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hp-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Services */
.hp-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 576px) {
    .hp-services { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .hp-services { grid-template-columns: repeat(3, 1fr); }
}

.hp-service {
    position: relative;
    background: var(--hp-surface);
    border-radius: var(--hp-radius);
    padding: 2rem 1.75rem;
    border: 1px solid var(--hp-border);
    box-shadow: var(--hp-shadow);
    transition: transform 0.35s var(--hp-ease), box-shadow 0.35s, border-color 0.35s;
    overflow: hidden;
}

.hp-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--hp-ease);
}

.hp-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--hp-shadow-lg);
    border-color: rgba(var(--hp-primary-rgb), 0.2);
}

.hp-service:hover::before { transform: scaleX(1); }

.hp-service__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hp-primary-soft), rgba(6, 182, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--hp-primary);
    margin-bottom: 1.25rem;
}

.hp-service h4 {
    font-family: var(--hp-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.hp-service p {
    margin: 0;
    color: var(--hp-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Process */
.hp-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .hp-process { grid-template-columns: repeat(3, 1fr); }
}

.hp-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--hp-surface);
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    box-shadow: var(--hp-shadow);
}

.hp-step__num {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-accent));
    color: #fff;
    font-family: var(--hp-display);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(var(--hp-primary-rgb), 0.45);
}

.hp-step h4 {
    font-family: var(--hp-display);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.hp-step p {
    margin: 0;
    color: var(--hp-muted);
    font-size: 0.9rem;
}

/* Inquiry / Sorgu */
.hp-section--sorgu {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--hp-primary-rgb), 0.04) 50%, transparent 100%);
}

.hp-inquiry-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.hp-inquiry-card {
    background: var(--hp-surface);
    border-radius: var(--hp-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid var(--hp-border);
}

.hp-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hp-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.hp-alert i { font-size: 1.35rem; flex-shrink: 0; }

/* Results */
.hp-result {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed #e2e8f0;
}

.hp-result__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hp-result__id {
    font-family: var(--hp-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--hp-primary);
}

.hp-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 1.25rem;
}

.hp-result-grid__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hp-muted);
}

.hp-result-grid__value {
    font-weight: 700;
    color: var(--hp-text);
}

.hp-result-grid__full {
    grid-column: 1 / -1;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-result-grid__price {
    font-family: var(--hp-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hp-primary);
}

.hp-gallery {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    margin-bottom: 1.25rem;
}

.hp-gallery a {
    flex: 0 0 88px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.hp-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-note {
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.hp-timeline { margin-top: 0.5rem; }

.hp-timeline__item {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 1.25rem;
    border-left: 2px solid #e2e8f0;
}

.hp-timeline__item:last-child { padding-bottom: 0; }

.hp-timeline__item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hp-primary);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--hp-primary-soft);
}

.hp-timeline__head {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.hp-timeline__head strong { font-weight: 700; }

.hp-timeline__head time {
    color: var(--hp-muted);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.hp-timeline__desc {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--hp-muted);
}

/* Footer */
.hp-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.hp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .hp-footer__grid { grid-template-columns: 1fr 1.4fr; }
}

.hp-footer h3 {
    font-family: var(--hp-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.25rem;
}

.hp-footer__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hp-footer__item i {
    color: #a5b4fc;
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.hp-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hp-footer__social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.hp-footer__social a:hover {
    background: var(--hp-primary);
    transform: translateY(-2px);
    color: #fff;
}

.hp-footer__map {
    border-radius: var(--hp-radius);
    overflow: hidden;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.05);
}

.hp-footer__map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.hp-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Lightbox */
.hp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: pointer;
}

.hp-lightbox.is-active { display: flex; }

.hp-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Status pills from system */
.hp-inquiry-card .status-pill {
    font-size: 0.7rem !important;
}

/* Reveal animations */
[data-hp-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
}

[data-hp-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Yardımcı sınıflar */
.hp-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .hp-form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

.hp-mobile-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hp-hidden-md {
    display: inline-flex;
}

@media (max-width: 767px) {
    .hp-hidden-md { display: none !important; }
}

.hp-mb-2 { margin-bottom: 0.5rem; }
.hp-mt-2 { margin-top: 0.5rem; }
.hp-me-1 { margin-right: 0.25rem; }
