/*
Theme Name:  ProsMachine
Description: ProsMachine custom child theme for BusinessLounge
Author:      ProsMachine
Template:    businesslounge
Version:     1.0.0
Text Domain: prosmachine
*/

/* =====================================================
   CSS VARIABLES - BRAND COLORS
   Primary: #CE1B28 | Dark: #B21F28 | White: #fff | Text: #222
   ===================================================== */
:root {
    --pm-red:        #CE1B28;
    --pm-red-dark:   #B21F28;
    --pm-red-hover:  #a01520;
    --pm-black:      #111111;
    --pm-text:       #333333;
    --pm-muted:      #777777;
    --pm-white:      #ffffff;
    --pm-bg-light:   #f8f8f8;
    --pm-border:     #e5e5e5;
    --pm-radius:     4px;
    --pm-shadow:     0 2px 16px rgba(0,0,0,0.13);
    --pm-transition: 0.22s ease;
}

/* =====================================================
   GLOBAL RESETS & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--pm-text);
    background: var(--pm-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pm-red);
    text-decoration: none;
    transition: color var(--pm-transition);
}

a:hover {
    color: var(--pm-red-dark);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    color: var(--pm-black);
    line-height: 1.25;
    margin-top: 0;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }

/* Accent underline on section headings */
.pm-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}
.pm-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--pm-red);
    margin-top: 10px;
    border-radius: 2px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.pm-btn,
.button_, .button_:visited,
.vc_btn3 {
    display: inline-block;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--pm-radius);
    border: 2px solid var(--pm-red);
    background: var(--pm-red);
    color: var(--pm-white) !important;
    cursor: pointer;
    transition: background var(--pm-transition), color var(--pm-transition), border-color var(--pm-transition);
    text-decoration: none;
}

.pm-btn:hover,
.button_:hover {
    background: transparent;
    color: var(--pm-red) !important;
    border-color: var(--pm-red);
}

.pm-btn-outline {
    background: transparent;
    color: var(--pm-red) !important;
}
.pm-btn-outline:hover {
    background: var(--pm-red);
    color: var(--pm-white) !important;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.top-header {
    position: relative;
    z-index: 100;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

/* Navigation active / hover state */
#navigation ul li a:hover,
#navigation ul li.current_page_item > a,
#navigation ul li.current-menu-item > a,
#navigation ul li.current_page_ancestor > a {
    color: var(--pm-red) !important;
}

/* Dropdown arrow color */
#navigation ul li a:after {
    border-top-color: var(--pm-red) !important;
}

/* Sticky header branding */
.sticky-header-holder .sitename a {
    color: var(--pm-red) !important;
}

/* =====================================================
   HERO / SLIDER AREA
   ===================================================== */
.main-carousel .slide_heading,
.rev_slider .tp-caption.tp-resizeme {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* =====================================================
   SECTION ROWS
   ===================================================== */
.content_row {
    padding: 72px 0;
}

.content_row.dark {
    background: var(--pm-black);
    color: var(--pm-white);
}

.content_row.dark h1,
.content_row.dark h2,
.content_row.dark h3,
.content_row.dark h4 {
    color: var(--pm-white);
}

.content_row.light-bg {
    background: var(--pm-bg-light);
}

/* =====================================================
   SERVICES / ICON BOXES
   ===================================================== */
.rt-icon-box {
    padding: 28px 24px;
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius);
    transition: box-shadow var(--pm-transition), border-color var(--pm-transition);
    background: var(--pm-white);
}

.rt-icon-box:hover {
    box-shadow: var(--pm-shadow);
    border-color: var(--pm-red);
}

.rt-icon-box .icon-holder i,
.rt-icon-box .icon-holder .rtui {
    color: var(--pm-red);
}

/* =====================================================
   PORTFOLIO / GALLERY ITEMS
   ===================================================== */
.portfolio_list .portfolio_item .overlay_holder {
    background: rgba(206, 27, 40, 0.82) !important;
}

.portfolio_list .portfolio_item:hover .overlay_holder {
    opacity: 1;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial .client_info {
    color: var(--pm-red) !important;
}

/* =====================================================
   PRICING TABLES
   ===================================================== */
.pricing_table.featured .price_header,
.pricing_table.featured .price_holder {
    background: var(--pm-red) !important;
    color: var(--pm-white) !important;
}

/* =====================================================
   PROGRESS BARS
   ===================================================== */
.rt-skill-bar-fill {
    background: var(--pm-red) !important;
}

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
    background: #111;
    color: #bbb;
    padding: 56px 0 0;
    font-size: 14px;
}

#footer h3, #footer h4 {
    color: var(--pm-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--pm-red);
    display: inline-block;
}

#footer a {
    color: #bbb;
    transition: color var(--pm-transition);
}

#footer a:hover {
    color: var(--pm-red);
}

.footer-bottom-bar {
    background: #0a0a0a;
    color: #666;
    padding: 14px 0;
    font-size: 12px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
}

/* =====================================================
   LANGUAGE SWITCHER (GTranslate)
   ===================================================== */
.gt-lang-code,
.goog-te-gadget,
.goog-te-gadget a,
.goog-te-combo {
    font-family: 'Open Sans', Arial, sans-serif !important;
    font-size: 13px !important;
}

.pm-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.pm-lang-switcher img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
}

/* =====================================================
   FLOATING SOCIAL BUTTONS (WhatsApp + Instagram)
   ===================================================== */
.pm-social-float {
    position: fixed;
    right: 24px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

.pm-social-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    position: relative;
}

.pm-social-float a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.pm-social-float a svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    display: block;
}

/* WhatsApp — green */
.pm-float-whatsapp {
    background: #25D366;
}
.pm-float-whatsapp:hover {
    background: #1ebe59;
    color: #fff !important;
}

/* Instagram — gradient */
.pm-float-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.pm-float-instagram:hover {
    filter: brightness(1.1);
    color: #fff !important;
}

/* Tooltip labels */
.pm-social-float a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.pm-social-float a:hover::before {
    opacity: 1;
}

/* Pulse animation on load */
@keyframes pm-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.pm-float-whatsapp {
    animation: pm-pulse 2.4s ease-in-out infinite;
}

/* =====================================================
   CONTACT / FORM STYLES
   ===================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius);
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
    transition: border-color var(--pm-transition);
    background: var(--pm-white);
    color: var(--pm-text);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--pm-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(206,27,40,0.1);
}

input[type="submit"],
button[type="submit"] {
    background: var(--pm-red);
    color: var(--pm-white);
    border: 2px solid var(--pm-red);
    padding: 11px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--pm-radius);
    cursor: pointer;
    transition: background var(--pm-transition), color var(--pm-transition);
    letter-spacing: 0.04em;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background: transparent;
    color: var(--pm-red);
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb-nav,
#breadcrumb {
    font-size: 13px;
    color: var(--pm-muted);
}

#breadcrumb a {
    color: var(--pm-red);
}

/* =====================================================
   SUB PAGE HEADER
   ===================================================== */
.sub_page_header {
    background: var(--pm-black);
    color: var(--pm-white);
    padding: 40px 0;
}

.sub_page_header h1,
.sub_page_header h2 {
    color: var(--pm-white);
    margin: 0;
}

/* =====================================================
   404 PAGE
   ===================================================== */
.pm-404 {
    text-align: center;
    padding: 100px 20px;
}
.pm-404 .pm-404-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--pm-red);
    line-height: 1;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-red    { color: var(--pm-red) !important; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* =====================================================
   RESPONSIVE — MOBILE FIRST
   ===================================================== */
@media screen and (max-width: 1024px) {
    .content_row { padding: 52px 0; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}

@media screen and (max-width: 768px) {
    body { font-size: 14px; }
    .content_row { padding: 36px 0; }

    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.15rem; }

    .pm-social-float {
        right: 14px;
        bottom: 18px;
        gap: 10px;
    }

    .pm-social-float a {
        width: 48px;
        height: 48px;
    }

    .pm-social-float a svg {
        width: 24px;
        height: 24px;
    }

    /* Hide tooltip on mobile (touch) */
    .pm-social-float a::before {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .pm-btn, .button_ {
        padding: 10px 18px;
        font-size: 13px;
    }

    .pm-social-float {
        right: 10px;
        bottom: 14px;
    }
}

/* =====================================================
   SHARED PAGE UTILITIES
   ===================================================== */
.pm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pm-section {
    padding: 80px 0;
}
.pm-section--white  { background: var(--pm-white); }
.pm-section--light  { background: var(--pm-bg-light); }
.pm-section--dark   { background: #111; color: #ccc; }

.pm-section-header  { margin-bottom: 48px; }
.pm-text-center     { text-align: center; }
.pm-text-white      { color: var(--pm-white) !important; }
.pm-text-accent     { color: var(--pm-red); }

.pm-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pm-red);
    margin-bottom: 10px;
}
.pm-eyebrow--light { color: rgba(255,255,255,0.6); }

.pm-section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pm-black);
    line-height: 1.18;
    margin: 0 0 16px;
}
.pm-section--dark .pm-section-heading { color: var(--pm-white); }

.pm-section-desc {
    font-size: 1.05rem;
    color: var(--pm-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* =====================================================
   BREADCRUMB BAR
   ===================================================== */
.pm-breadcrumb-bar {
    background: var(--pm-bg-light);
    border-bottom: 1px solid var(--pm-border);
    padding: 10px 0;
    font-size: 13px;
    color: var(--pm-muted);
}
.pm-breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; }
.pm-breadcrumb-bar a  { color: var(--pm-red); text-decoration: none; }
.pm-breadcrumb-bar a:hover { text-decoration: underline; }
.pm-breadcrumb-bar span[aria-hidden] { color: #ccc; }

/* =====================================================
   HİZMETLER HERO
   ===================================================== */
.pm-hizmet-hero {
    position: relative;
    background:
        linear-gradient(rgba(12,12,12,0.72), rgba(12,12,12,0.72)),
        url('../../uploads/2023/06/prosmachine-1.jpg') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.pm-hizmet-hero__overlay { display: none; }  /* handled by gradient */
.pm-hizmet-hero .pm-container { position: relative; z-index: 2; padding: 80px 24px; }
.pm-hizmet-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pm-white);
    margin: 12px 0 16px;
    line-height: 1.1;
}
.pm-hizmet-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    margin-bottom: 28px;
}
.pm-hizmet-hero .pm-eyebrow { color: var(--pm-red); }

/* =====================================================
   İLETİŞİM HERO
   ===================================================== */
.pm-contact-hero {
    position: relative;
    background:
        linear-gradient(rgba(12,12,12,0.78), rgba(12,12,12,0.78)),
        url('../../uploads/2019/12/Pros-Machine-1.jpg') center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.pm-contact-hero__overlay { display: none; }
.pm-contact-hero .pm-container { position: relative; z-index: 2; padding: 70px 24px; }
.pm-contact-hero h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--pm-white);
    margin: 12px 0 14px;
}
.pm-contact-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
}

/* =====================================================
   INTRO GRID (hizmetler page)
   ===================================================== */
.pm-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.pm-intro-grid__text p { color: var(--pm-muted); line-height: 1.85; margin-bottom: 16px; }
.pm-intro-grid__text .pm-btn { margin-top: 8px; }

.pm-intro-grid__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pm-stat-card {
    background: var(--pm-white);
    border: 1px solid var(--pm-border);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow var(--pm-transition);
}
.pm-stat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
.pm-stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--pm-red);
    line-height: 1;
}
.pm-stat-label {
    display: block;
    font-size: 13px;
    color: var(--pm-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =====================================================
   HİZMET KARTI GRİDİ
   ===================================================== */
.pm-hizmet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.pm-hizmet-card {
    background: var(--pm-white);
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow var(--pm-transition), transform var(--pm-transition), border-color var(--pm-transition);
}
.pm-hizmet-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: var(--pm-red);
}

/* Sıra numarası */
.pm-hizmet-card::before {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 11px;
    font-weight: 700;
    color: var(--pm-border);
    letter-spacing: 0.06em;
}

.pm-hizmet-card__icon {
    width: 52px;
    height: 52px;
    color: var(--pm-red);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.pm-hizmet-card__icon svg { width: 52px; height: 52px; }

.pm-hizmet-card__body { flex: 1; }
.pm-hizmet-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--pm-black);
    line-height: 1.3;
}
.pm-hizmet-card__body p {
    font-size: 14px;
    color: var(--pm-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.pm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.pm-feature-list li {
    font-size: 13px;
    color: var(--pm-text);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    border-bottom: 1px dashed var(--pm-border);
}
.pm-feature-list li:last-child { border-bottom: none; }
.pm-feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--pm-red);
    font-weight: 700;
    font-size: 11px;
}

.pm-hizmet-card__cta { margin-top: auto; padding-top: 16px; }

/* Accent kart (7/24) */
.pm-hizmet-card--accent {
    background: var(--pm-red);
    border-color: var(--pm-red);
    color: var(--pm-white);
}
.pm-hizmet-card--accent::before { color: rgba(255,255,255,0.25); }
.pm-hizmet-card--accent .pm-hizmet-card__icon { color: var(--pm-white); }
.pm-hizmet-card--accent .pm-hizmet-card__body h3 { color: var(--pm-white); }
.pm-hizmet-card--accent .pm-hizmet-card__body p  { color: rgba(255,255,255,0.85); }
.pm-hizmet-card--accent .pm-feature-list li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.2); }
.pm-hizmet-card--accent .pm-feature-list li::before { color: rgba(255,255,255,0.6); }
.pm-hizmet-card--accent:hover { border-color: var(--pm-red-dark); }

/* Buttons — ek varyantlar */
.pm-btn--outline {
    background: transparent;
    color: var(--pm-red) !important;
    border-color: var(--pm-red);
}
.pm-btn--outline:hover {
    background: var(--pm-red);
    color: var(--pm-white) !important;
}
.pm-btn--white {
    background: var(--pm-white);
    color: var(--pm-red) !important;
    border-color: var(--pm-white);
}
.pm-btn--white:hover {
    background: transparent;
    color: var(--pm-white) !important;
    border-color: var(--pm-white);
}
.pm-btn--outline.pm-btn--light {
    color: var(--pm-white) !important;
    border-color: rgba(255,255,255,0.6);
}
.pm-btn--outline.pm-btn--light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--pm-white);
}
.pm-btn--accent {
    background: var(--pm-red);
    color: var(--pm-white) !important;
    border-color: var(--pm-red);
}
.pm-btn--accent:hover {
    background: var(--pm-red-hover);
    border-color: var(--pm-red-hover);
}
.pm-btn--wa {
    background: #25D366;
    color: var(--pm-white) !important;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
}
.pm-btn--wa:hover { background: #1ebe59; border-color: #1ebe59; }
.pm-btn--sm  { padding: 8px 18px; font-size: 12px; }
.pm-btn--lg  { padding: 14px 32px; font-size: 15px; }
.pm-btn--full { width: 100%; text-align: center; display: block; }

.pm-smooth-scroll { display: inline-flex; align-items: center; gap: 6px; }

/* =====================================================
   SÜREÇ ADIMLARI
   ===================================================== */
.pm-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}
.pm-process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}
.pm-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--pm-red);
    color: var(--pm-white);
    font-weight: 900;
    font-size: 14px;
    border-radius: 50%;
    margin: 0 auto 14px;
}
.pm-process-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pm-white);
    margin-bottom: 8px;
}
.pm-process-step p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.pm-process-connector {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.2);
    align-self: center;
    flex-shrink: 0;
    margin-top: -24px;
}

/* =====================================================
   NEDEN PROS MACHINE
   ===================================================== */
.pm-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.pm-why-grid__visual { position: relative; }
.pm-why-grid__visual img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    max-height: 440px;
}
.pm-why-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--pm-red);
    color: var(--pm-white);
    padding: 18px 22px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    box-shadow: var(--pm-shadow);
}
.pm-why-badge strong { display: block; font-size: 1.4rem; font-weight: 900; }

.pm-why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 24px; }
.pm-why-item { display: flex; gap: 16px; }
.pm-why-item__icon {
    width: 32px;
    height: 32px;
    background: var(--pm-red);
    color: var(--pm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.pm-why-item strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--pm-black); }
.pm-why-item p { font-size: 14px; color: var(--pm-muted); margin: 0; line-height: 1.65; }

/* =====================================================
   CTA BAND
   ===================================================== */
.pm-cta-band {
    background: var(--pm-red);
    padding: 72px 0;
}
.pm-cta-band h2 { color: var(--pm-white); font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.pm-cta-band p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.pm-cta-band__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   İLETİŞİM — TAB NAVİGASYON
   ===================================================== */
.pm-contact-tabs-nav {
    background: var(--pm-white);
    border-bottom: 2px solid var(--pm-border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pm-contact-tabs-nav .pm-container {
    display: flex;
    gap: 0;
}
.pm-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pm-muted);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color var(--pm-transition), border-color var(--pm-transition);
    white-space: nowrap;
}
.pm-tab-btn:hover             { color: var(--pm-red); }
.pm-tab-btn--active           { color: var(--pm-red); border-bottom-color: var(--pm-red); }
.pm-tab-badge {
    background: var(--pm-red);
    color: var(--pm-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

/* Tab panels */
.pm-tab-panel          { display: none; }
.pm-tab-panel--active  { display: block; }

/* =====================================================
   İLETİŞİM LAYOUT
   ===================================================== */
.pm-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.pm-contact-intro-text {
    font-size: 15px;
    color: var(--pm-muted);
    margin-bottom: 28px;
    line-height: 1.8;
}

/* Info Kartları */
.pm-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pm-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--pm-border);
    border-radius: 8px;
    background: var(--pm-white);
    font-size: 14px;
    text-decoration: none;
    color: var(--pm-text);
    transition: border-color var(--pm-transition), box-shadow var(--pm-transition);
}
.pm-info-card strong { display: block; font-weight: 700; color: var(--pm-black); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.pm-info-card span   { display: block; font-size: 14px; color: var(--pm-muted); margin-top: 2px; }
.pm-info-card--clickable:hover {
    border-color: var(--pm-red);
    box-shadow: 0 2px 12px rgba(206,27,40,0.12);
    text-decoration: none;
}

.pm-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pm-icon-phone    { background: #FEF3F4; color: var(--pm-red); }
.pm-icon-wa       { background: #E8F8EE; color: #25D366; }
.pm-icon-mail     { background: #EBF4FF; color: #2563EB; }
.pm-icon-location { background: #FFF8E1; color: #F59E0B; }
.pm-icon-clock    { background: var(--pm-bg-light); color: var(--pm-muted); }
.pm-icon-ig       { background: #FCE9F9; color: #C13584; }

/* WhatsApp kart */
.pm-info-card--whatsapp { border-color: rgba(37,211,102,0.3); }
.pm-info-card--whatsapp:hover { border-color: #25D366; box-shadow: 0 2px 12px rgba(37,211,102,0.18); }

/* Instagram kart */
.pm-info-card--instagram { border-color: rgba(193,53,132,0.2); }
.pm-info-card--instagram:hover { border-color: #C13584; box-shadow: 0 2px 12px rgba(193,53,132,0.15); }

/* =====================================================
   FORM KARTI
   ===================================================== */
.pm-form-card {
    background: var(--pm-white);
    border: 1px solid var(--pm-border);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.pm-form-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--pm-black);
}
.pm-form-desc {
    font-size: 14px;
    color: var(--pm-muted);
    margin-bottom: 24px;
}

/* Urgent form kart başlık */
.pm-form-card--urgent {
    border-top: 4px solid var(--pm-red);
}
.pm-form-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.pm-urgent-dot {
    width: 10px;
    height: 10px;
    background: var(--pm-red);
    border-radius: 50%;
    display: inline-block;
    animation: pm-blink 1.4s ease-in-out infinite;
}
@keyframes pm-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Form alanları */
.pm-native-form .pm-form-row { margin-bottom: 0; }
.pm-form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px !important;
}
.pm-form-field { margin-bottom: 16px; }
.pm-form-field:last-child { margin-bottom: 0; }
.pm-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-black);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.pm-form-field label span { color: var(--pm-red); }
.pm-form-field input,
.pm-form-field select,
.pm-form-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--pm-text);
    background: var(--pm-white);
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color var(--pm-transition), box-shadow var(--pm-transition);
    line-height: 1.5;
}
.pm-form-field input:focus,
.pm-form-field select:focus,
.pm-form-field textarea:focus {
    outline: none;
    border-color: var(--pm-red);
    box-shadow: 0 0 0 3px rgba(206,27,40,0.09);
}
.pm-form-field textarea { resize: vertical; min-height: 100px; }

/* Aciliyet seçici */
.pm-urgency-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 6px;
}
.pm-urgency-opt input[type="radio"] { display: none; }
.pm-urgency-opt__label {
    display: block;
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--pm-border);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color var(--pm-transition), background var(--pm-transition);
}
.pm-urgency-opt input:checked + .pm-urgency-opt--critical  { border-color: #DC2626; background: #FEF2F2; }
.pm-urgency-opt input:checked + .pm-urgency-opt--urgent    { border-color: #D97706; background: #FFFBEB; }
.pm-urgency-opt input:checked + .pm-urgency-opt--schedule  { border-color: #059669; background: #F0FDF4; }
.pm-urgency-opt__label:hover { border-color: var(--pm-red); }

/* Checkbox */
.pm-form-field--checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--pm-text);
    cursor: pointer;
}
.pm-form-field--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--pm-red);
    cursor: pointer;
    flex-shrink: 0;
}
.pm-form-disclaimer {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
}

/* =====================================================
   SERVİS ÇAĞIR LAYOUT
   ===================================================== */
.pm-servis-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
}
.pm-servis-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pm-red);
    color: var(--pm-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.pm-servis-badge span {
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    letter-spacing: 0.05em;
}
.pm-servis-features {
    display: flex; flex-direction: column; gap: 18px;
    margin: 28px 0;
}
.pm-sf-item { display: flex; gap: 14px; align-items: flex-start; }
.pm-sf-item__icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.pm-sf-item strong { display: block; font-weight: 700; margin-bottom: 3px; }
.pm-sf-item p { font-size: 13px; color: var(--pm-muted); margin: 0; }

.pm-servis-direct { margin-top: 28px; }
.pm-servis-direct p { font-size: 13px; color: var(--pm-muted); margin-bottom: 14px; }
.pm-servis-direct .pm-btn { display: inline-flex; align-items: center; gap: 8px; margin-right: 12px; margin-bottom: 10px; }

/* =====================================================
   HARİTA
   ===================================================== */
.pm-map-section { background: var(--pm-bg-light); }
.pm-map-title {
    padding: 28px 24px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pm-black);
    max-width: 1200px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pm-map-embed iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

/* =====================================================
   RESPONSIVE — Sayfa şablonları
   ===================================================== */
@media screen and (max-width: 1024px) {
    .pm-hizmet-grid       { grid-template-columns: repeat(2, 1fr); }
    .pm-intro-grid        { grid-template-columns: 1fr; gap: 40px; }
    .pm-why-grid          { grid-template-columns: 1fr; gap: 40px; }
    .pm-contact-layout    { grid-template-columns: 1fr; gap: 36px; }
    .pm-servis-layout     { grid-template-columns: 1fr; gap: 36px; }
    .pm-process-steps     { flex-wrap: wrap; gap: 20px; }
    .pm-process-connector { display: none; }
    .pm-process-step      { flex: 0 0 calc(50% - 20px); }
}

@media screen and (max-width: 768px) {
    .pm-hizmet-hero h1    { font-size: 2.1rem; }
    .pm-contact-hero h1   { font-size: 2rem; }
    .pm-section-heading   { font-size: 1.6rem; }

    .pm-hizmet-grid       { grid-template-columns: 1fr; }
    .pm-intro-grid__stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pm-why-badge         { position: static; margin-top: 16px; display: inline-flex; }
    .pm-cta-band h2       { font-size: 1.6rem; }
    .pm-form-card         { padding: 24px 20px; }
    .pm-form-row--half    { grid-template-columns: 1fr; }
    .pm-urgency-select    { grid-template-columns: 1fr; }
    .pm-tab-btn           { padding: 14px 18px; font-size: 13px; }
    .pm-process-step      { flex: 0 0 100%; }
    .pm-section           { padding: 52px 0; }
}

@media screen and (max-width: 480px) {
    .pm-hizmet-hero h1  { font-size: 1.7rem; }
    .pm-contact-hero h1 { font-size: 1.65rem; }
    .pm-intro-grid__stats { grid-template-columns: repeat(2, 1fr); }
    .pm-stat-number     { font-size: 1.8rem; }
    .pm-servis-direct .pm-btn { display: block; margin-right: 0; }
}
