/* =========================================
   PVAGE Custom Styles
   Extends Ashley template for PVAGE content
   ========================================= */

/* ---- Global Background Override ---- */
body {
    background-color: rgb(242, 242, 242);
}

/* =========================================
   PVAGE Demo Form Modal
   Matches Ruizarch / Outfit design system
   ========================================= */
.pvage-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 15px;
    opacity: 0;
    -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.pvage-modal-overlay.pvage-modal-open {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.pvage-modal-overlay.pvage-modal-visible {
    opacity: 1;
}
.pvage-modal {
    font-family: "Outfit", sans-serif;
    background: linear-gradient(145deg, #0f1724 0%, #1a2332 50%, #0d1520 100%);
    border: 1px solid rgba(255, 152, 0, 0.12);
    border-radius: 70px;
    width: 100%;
    max-width: 680px;
    padding: 50px 50px 40px;
    position: relative;
    transform: translateY(30px);
    -webkit-transition: transform 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: transform 0.4s cubic-bezier(0, 0, 0.3642, 1);
    margin: auto;
}
.pvage-modal-visible .pvage-modal {
    transform: translateY(0);
}
.pvage-modal-close {
    position: absolute;
    top: 28px; right: 30px;
    background: none; border: none;
    color: rgba(255,255,255,0.4);
    font-size: 28px;
    cursor: pointer;
    -webkit-transition: color 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: color 0.4s cubic-bezier(0, 0, 0.3642, 1);
    z-index: 2;
    line-height: 1;
    padding: 5px;
    font-family: "Outfit", sans-serif;
}
.pvage-modal-close:hover {
    color: rgb(255, 152, 0);
}
.pvage-modal-logo {
    text-align: center;
    margin-bottom: 30px;
}
.pvage-modal-logo img {
    height: 40px;
}
.pvage-modal h3 {
    text-align: center;
    color: rgb(255, 255, 255);
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 8px;
}
.pvage-modal .pvage-modal-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 35px;
}
.pvage-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.pvage-form-group {
    flex: 1;
    min-width: 0;
}
.pvage-form-group.pvage-full {
    flex-basis: 100%;
}
.pvage-form-group label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.pvage-form-group label .pvage-req {
    color: rgb(255, 152, 0);
    letter-spacing: 0;
}
.pvage-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 70px;
    padding: 0 20px;
    height: 55px;
    -webkit-transition: border-color 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: border-color 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.pvage-input-wrap:focus-within {
    border-color: rgba(255, 152, 0, 0.4);
}
.pvage-input-wrap i {
    color: rgb(255, 152, 0);
    font-size: 15px;
    margin-right: 12px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.pvage-input-wrap .pvage-phone-prefix {
    color: rgba(255,255,255,0.4);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-right: 10px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 12px;
}
.pvage-input-wrap input,
.pvage-input-wrap select {
    background: none;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    width: 100%;
    height: 100%;
    line-height: 55px;
    padding: 0;
    margin: 0;
}
.pvage-input-wrap select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.pvage-input-wrap input::placeholder {
    color: rgba(255,255,255,0.25);
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.pvage-input-wrap select option {
    background: #1a2332;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}
.pvage-select-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    margin-left: 8px;
    flex-shrink: 0;
    -webkit-transition: transform 0.3s cubic-bezier(0, 0, 0.3642, 1);
    transition: transform 0.3s cubic-bezier(0, 0, 0.3642, 1);
}

/* Custom Dropdown */
.pvage-custom-select {
    position: relative;
    width: 100%;
    height: 100%;
}
.pvage-custom-select select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.pvage-select-display {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    color: rgba(255,255,255,0.25);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pvage-select-display.has-value {
    color: rgb(255, 255, 255);
}
.pvage-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: -20px;
    right: -20px;
    background: linear-gradient(180deg, #1e2d40 0%, #162234 100%);
    border: 1px solid rgba(255, 152, 0, 0.15);
    border-radius: 20px;
    padding: 8px 0;
    z-index: 100000;
    max-height: 260px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.3642, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.3642, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.pvage-select-dropdown.pvage-dropdown-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pvage-select-dropdown::-webkit-scrollbar {
    width: 5px;
}
.pvage-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.pvage-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 152, 0, 0.3);
    border-radius: 10px;
}
.pvage-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 152, 0, 0.5);
}
.pvage-dropdown-search {
    position: sticky;
    top: 0;
    padding: 6px 14px 10px;
    background: linear-gradient(180deg, #1e2d40 0%, #1e2d40 90%, transparent 100%);
    z-index: 2;
}
.pvage-dropdown-search input {
    width: 100%;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 0 14px 0 36px;
    color: rgb(255, 255, 255);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    outline: none;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}
.pvage-dropdown-search input:focus {
    border-color: rgba(255, 152, 0, 0.3);
}
.pvage-dropdown-search input::placeholder {
    color: rgba(255,255,255,0.3);
    text-transform: none;
    letter-spacing: 0;
}
.pvage-dropdown-search i {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    margin: 0;
    width: auto;
}
.pvage-dropdown-item {
    padding: 10px 20px;
    color: rgba(255,255,255,0.6);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}
.pvage-dropdown-item:hover {
    background: rgba(255, 152, 0, 0.08);
    color: rgb(255, 255, 255);
}
.pvage-dropdown-item.selected {
    color: rgb(255, 152, 0);
    background: rgba(255, 152, 0, 0.06);
    font-weight: 500;
}
.pvage-dropdown-item.pvage-dd-hidden {
    display: none;
}
.pvage-dropdown-empty {
    padding: 16px 20px;
    color: rgba(255,255,255,0.3);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    text-align: center;
    display: none;
}
.pvage-input-wrap.pvage-select-open .pvage-select-arrow {
    transform: rotate(180deg);
}
.pvage-input-wrap.pvage-select-open {
    border-color: rgba(255, 152, 0, 0.4);
}
.pvage-form-notice {
    background: rgba(255, 152, 0, 0.06);
    border: 1px solid rgba(255, 152, 0, 0.12);
    border-radius: 70px;
    padding: 18px 24px;
    margin: 28px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pvage-form-notice i {
    color: rgb(255, 152, 0);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}
.pvage-form-notice p {
    color: rgba(255,255,255,0.5);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 170%;
    margin: 0;
}
.pvage-legal-section {
    margin-bottom: 28px;
}
.pvage-legal-section h5 {
    color: rgb(255, 255, 255);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 150%;
}
.pvage-legal-section h5 i {
    color: rgb(255, 152, 0);
    font-size: 15px;
}
.pvage-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.pvage-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: rgb(255, 152, 0);
    cursor: pointer;
}
.pvage-checkbox-row label {
    color: rgba(255,255,255,0.5);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    cursor: pointer;
}
.pvage-checkbox-row label a {
    color: rgb(255, 152, 0);
    text-decoration: none;
    -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.pvage-checkbox-row label a:hover {
    text-decoration: underline;
}
.pvage-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.pvage-btn-back,
.pvage-btn-submit {
    flex: 1;
    height: 60px;
    border-radius: 70px;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    border: none;
}
.pvage-btn-back {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}
.pvage-btn-back:hover {
    background: rgba(255,255,255,0.1);
    color: rgb(255, 255, 255);
    -webkit-transform: scale(1.015);
    transform: scale(1.015);
}
.pvage-btn-submit {
    background: rgb(255, 152, 0);
    color: rgb(0, 0, 0);
}
.pvage-btn-submit:hover {
    -webkit-transform: scale(1.015);
    transform: scale(1.015);
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}
.pvage-form-success {
    display: none;
    text-align: center;
    padding: 50px 20px;
}
.pvage-form-success i {
    font-size: 60px;
    color: rgb(255, 152, 0);
    margin-bottom: 20px;
}
.pvage-form-success h3 {
    color: rgb(255, 255, 255);
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}
.pvage-form-success p {
    color: rgba(255,255,255,0.5);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 150%;
}
body.pvage-modal-no-scroll {
    overflow: hidden;
}

/* Mobilde scroll iyileştirme */
@media screen and (max-width: 1200px) {
    .mil-wrapper {
        overflow-x: hidden;
        overflow-y: visible !important;
    }
    html {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    body {
        overflow-x: hidden;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: auto;
        -ms-scroll-chaining: chained;
    }
}

/* Modal Responsive */
@media screen and (max-width: 992px) {
    .pvage-modal {
        padding: 40px 35px 30px;
        border-radius: 50px;
        max-width: 600px;
    }
    .pvage-input-wrap {
        height: 50px;
    }
    .pvage-btn-back,
    .pvage-btn-submit {
        height: 55px;
    }
}
@media screen and (max-width: 767px) {
    .pvage-modal {
        padding: 35px 25px 25px;
        border-radius: 35px;
    }
    .pvage-form-row {
        flex-direction: column;
        gap: 0;
    }
    .pvage-form-group {
        margin-bottom: 16px;
    }
    .pvage-modal h3 {
        font-size: 22px;
    }
    .pvage-form-actions {
        flex-direction: column;
    }
    .pvage-modal-overlay {
        padding: 20px 12px;
    }
    .pvage-form-notice {
        border-radius: 25px;
        padding: 15px 18px;
    }
    .pvage-modal-close {
        top: 20px; right: 22px;
    }
}
@media screen and (max-width: 480px) {
    .pvage-modal {
        padding: 30px 18px 20px;
        border-radius: 25px;
    }
    .pvage-input-wrap {
        height: 48px;
        padding: 0 15px;
        border-radius: 50px;
    }
    .pvage-form-notice {
        border-radius: 20px;
    }
}

/* ---- Fix gap between inner banner and next dark section ---- */
.mil-inner-banner.mil-dark-bg {
    margin-bottom: -6px;
    padding-bottom: 6px;
}

/* ---- Review Icon Dots ---- */
.mil-custom-dot.mil-icon-dot {
    background-image: none !important;
    background-color: rgba(0, 0, 0, 0.06) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mil-custom-dot.mil-icon-dot i {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
}
.swiper-pagination-bullet-active .mil-custom-dot.mil-icon-dot {
    background-color: rgba(255, 152, 0, 0.1) !important;
}
.swiper-pagination-bullet-active .mil-custom-dot.mil-icon-dot i {
    color: #ff9800;
}

/* ---- Accent Color Override (Orange) ---- */
.mil-accent {
    color: #ff9800 !important;
}

/* ---- Toplantı Talep Et Button Arrow ---- */
.mil-btn-toplanti svg {
    background-color: #ff9800 !important;
}
.mil-btn-toplanti svg path {
    fill: #fff !important;
}
/* ---- Toplantı Modal Date/Time ---- */
.pvage-input-wrap input[type="date"],
.pvage-input-wrap input[type="time"] {
    color-scheme: dark;
    cursor: pointer;
}
.pvage-input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.pvage-input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(10deg);
    cursor: pointer;
}

.mil-mr-15 {
    margin-right: 15px;
}

/* ---- Icon Boxes ---- */
.mil-icon-box {
    padding: 30px 20px;
}

.mil-icon-box.mil-center {
    text-align: center;
}

.mil-icon-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
}

.mil-icon-frame-md {
    width: 70px;
    height: 70px;
}

.mil-icon-box:hover .mil-icon-frame {
    background: rgba(255, 152, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.3);
    transform: translateY(-3px);
}

.mil-text-sm {
    font-size: 14px;
    line-height: 1.6;
}

/* ---- Price Cards ---- */
.mil-price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mil-price-card:hover {
    border-color: rgba(255, 152, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 152, 0, 0.15);
}

.mil-price-card.mil-featured {
    border: 2px solid rgba(255, 152, 0, 0.5);
    background: rgba(255, 152, 0, 0.05);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.2);
}

.mil-price-card.mil-featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 70px rgba(255, 152, 0, 0.25);
}

.mil-popular-badge {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
}

.mil-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.mil-price .mil-h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.mil-price-list {
    list-style: none;
    padding: 0;
}

.mil-price-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.mil-price-list li:last-child {
    border-bottom: none;
}

.mil-price-list li i {
    font-size: 12px;
}

/* ---- FAQ Styles Enhancement ---- */
.mil-accordion-head {
    font-size: 18px;
    font-weight: 500;
}

.mil-text-frame {
    padding: 0 0 20px;
}

.mil-text-frame p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.75;
}

/* ---- Banner Content - Yukarı Kaydırma ---- */
.mil-banner .mil-banner-content {
    padding-bottom: 200px;
}

/* ---- Responsive Enhancements ---- */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .mil-banner-content h1 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .mil-banner-content p {
        font-size: 15px;
    }

    /* Banner padding mobilde azalt */
    .mil-banner .mil-banner-content {
        padding-bottom: 100px;
    }

    /* Banner SVG'leri gizle */
    .mil-banner-panel-svg,
    .mil-banner-sun-svg {
        display: none !important;
    }

    /* Menü güneş SVG küçült ve aşağı kaydır */
    .pvage-menu-sun-svg {
        width: 120px;
        height: 120px;
        top: 90px !important;
    }
    .pvage-menu-sun-svg svg {
        width: 120px;
        height: 120px;
    }

    /* CTA butonları alt alta */
    .mil-btn-space {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .mil-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: 0 !important;
        max-width: 100%;
    }

    /* CTA section butonları */
    .mil-center .mil-button {
        display: inline-flex;
        margin-bottom: 15px;
    }

    .mil-center .mil-button + .mil-button {
        margin-left: 0 !important;
    }

    .mil-price-card.mil-featured {
        transform: scale(1);
    }

    .mil-price-card.mil-featured:hover {
        transform: translateY(-5px);
    }

    .mil-price-card {
        padding: 25px 20px;
    }

    .mil-price .mil-h2 {
        font-size: 36px;
    }

    .mil-services-grid-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .mil-icon-box {
        text-align: center;
    }

    .mil-circle-text {
        display: none;
    }

    .mil-h1 {
        font-size: 36px !important;
    }

    .mil-complex-text .mil-text-image {
        display: none;
    }

    /* Accordion mobile */
    .mil-accordion-head {
        font-size: 16px;
    }

    /* Screenshots */
    .mil-cover-frame img {
        max-height: 200px;
        object-fit: cover;
    }

    /* Padding azaltma */
    .mil-p-120-120 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .mil-p-120-60 {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }

    .mil-p-120-0 {
        padding-top: 60px !important;
    }

    .mil-mb-120 {
        margin-bottom: 60px !important;
    }

    .mil-mb-60 {
        margin-bottom: 30px !important;
    }

    /* Service card spacing */
    .mil-service-card-sm {
        padding: 25px 15px;
    }

    /* Featured kartda animasyonu kaldır */
    .mil-price-card.mil-featured {
        animation: none;
    }

    /* İç sayfa banner */
    .mil-inner-banner .mil-banner-content {
        padding-top: 100px;
    }

    /* Footer */
    footer .mil-logo img {
        height: 32px;
    }

    /* Link butonları mobilde block */
    .mil-link {
        display: inline-block;
        margin-top: 10px;
    }

    /* Suptitle mobilde */
    .mil-suptitle {
        font-size: 13px;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .mil-banner-content h1 {
        font-size: 26px !important;
    }

    .mil-h1 {
        font-size: 28px !important;
    }

    .mil-inner-banner .mil-banner-content h1 {
        font-size: 26px !important;
    }

    .mil-price .mil-h2 {
        font-size: 30px;
    }

    .mil-price-card {
        padding: 20px 15px;
    }

    .mil-service-card-sm {
        padding: 20px 10px;
    }

    .mil-button {
        padding: 0 15px 0 25px;
        font-size: 12px;
        height: 55px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .mil-banner-content h1 {
        font-size: 48px !important;
    }

    .mil-banner .mil-banner-content {
        padding-bottom: 150px;
    }

    /* Banner SVG tablet'te küçült */
    .mil-banner-panel-svg {
        transform: scale(0.65);
        transform-origin: bottom left;
    }
    .mil-banner-sun-svg {
        transform: scale(0.7);
    }

    .mil-price .mil-h2 {
        font-size: 42px;
    }

    .mil-price-card.mil-featured {
        transform: scale(1);
    }

    .mil-h1 {
        font-size: 52px !important;
    }

    /* Padding azaltma */
    .mil-p-120-120 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .mil-p-120-60 {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
}

/* Large tablet / Small desktop */
@media (min-width: 1025px) and (max-width: 1199px) {
    .mil-price-card.mil-featured {
        transform: scale(1.01);
    }
}

/* ---- Service card icon spacing ---- */
.mil-service-card-sm h5 i {
    display: inline-block;
    margin-bottom: 5px;
}

/* ---- Screenshot hover effect ---- */
.mil-blog-card .mil-cover-frame {
    overflow: hidden;
    border-radius: 8px;
}

.mil-blog-card .mil-cover-frame img {
    transition: transform 0.5s ease;
}

.mil-blog-card:hover .mil-cover-frame img {
    transform: scale(1.05);
}

/* ---- Logo image styling ---- */
.mil-logo {
    text-decoration: none !important;
    display: inline-block;
}

.mil-logo img {
    height: 32px;
    width: auto;
    display: block;
}

@media screen and (max-width: 1200px) {
    .mil-frame .mil-frame-top .mil-logo img {
        filter: brightness(0) invert(1);
    }
}

footer .mil-logo img {
    height: 38px;
}

/* ---- Smooth scrolling (desktop only) ---- */
@media (hover: hover) and (pointer: fine) {
    html {
        scroll-behavior: smooth;
    }
}

/* ---- Orange glow on featured elements ---- */
.mil-featured .mil-button {
    background: #ff9800;
    color: #fff;
}

.mil-featured .mil-button:hover {
    background: #e68900;
}

/* ---- Footer enhancements ---- */
footer .mil-light-soft i {
    width: 20px;
    text-align: center;
}

/* Footer linkleri sadece yazı genişliğinde tıklanabilir */
.mil-footer-menu ul li a,
.mil-menu-list li a {
    display: inline;
}

/* ---- About section avatar for PVAGE ---- */
.mil-about-quote .mil-avatar img {
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 152, 0, 0.1);
    padding: 8px;
}

/* ---- Animations ---- */
@keyframes pvage-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 152, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 152, 0, 0.4);
    }
}

.mil-price-card.mil-featured {
    animation: pvage-pulse 3s ease-in-out infinite;
}

/* ---- Inner banner for sub-pages ---- */
.mil-inner-banner {
    position: relative;
}

.mil-inner-banner .mil-banner-content h1 {
    font-size: 58px;
}

@media (max-width: 767px) {
    .mil-inner-banner .mil-banner-content h1 {
        font-size: 32px !important;
    }
}
