Desktop/* =============================================
   GLOBAL STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    padding: 0;
    min-height: 70px;
    position: relative;
    z-index: 1000;
}

.navbar .container-fluid {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Logo */
.logo-wrapper {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-v {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-v::before {
    content: 'V';
    font-size: 36px;
    font-weight: 900;
    color: #0d7a8a;
    font-style: italic;
    line-height: 1;
    text-shadow: 2px 2px 0px #0a5f6e;
    letter-spacing: -2px;
}

.logo-v-white::before {
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.3);
}

/* Logo border/background */
.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #0d7a8a;
    border-radius: 4px;
    transform: skewX(-8deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    font-weight: 700;
    color: #0d7a8a;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.logo-text-white span {
    color: #ffffff;
}

.logo-line1 { font-size: 10px !important; }
.logo-line2 { font-size: 13px !important; font-weight: 900 !important; }
.logo-line3 { font-size: 10px !important; }

/* Nav Links */
.nav-center-links {
    gap: 10px;
}

.nav-custom {
    color: #444 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-custom:hover {
    color: #0d7a8a !important;
    background-color: #f0fafa;
}

.nav-custom i {
    color: #0d7a8a;
}

/* Right Buttons */
.btn-duyuru {
    background-color: transparent;
    border: 2px solid #0d7a8a;
    color: #0d7a8a;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-duyuru:hover {
    background-color: #0d7a8a;
    color: #fff;
}

.badge-notif {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #e53e3e;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.btn-giris {
    background-color: #0d7a8a;
    border: 2px solid #0d7a8a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-giris:hover {
    background-color: #0a5f6e;
    border-color: #0a5f6e;
    color: #fff;
}

/* Red bottom line on navbar */
.navbar-red-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #e53e3e, #c53030);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #00c4c4 0%, #0d9488 25%, #1e2060 60%, #3d0030 100%);
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.hero-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

/* Search Bar */
.search-wrapper {
    max-width: 680px;
    width: 100%;
}

.search-box {
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-icon {
    color: #888;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #555;
    background: transparent;
}

.search-input::placeholder {
    color: #aaa;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    background-color: #f5f7fa;
}

/* Featured Card */
.featured-card {
    background: linear-gradient(145deg, #0d4f5c 0%, #0a3d4a 50%, #083040 100%);
    border-radius: 12px;
    padding: 28px 24px 20px;
    color: white;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(13, 79, 92, 0.3);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.featured-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.featured-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.featured-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Laptop Illustration */
.featured-illustration {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.laptop-illustration {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.laptop-icon {
    font-size: 72px;
    color: rgba(255,255,255,0.85);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.coins-wrapper {
    position: absolute;
    bottom: 8px;
    right: -10px;
}

.coins-icon {
    font-size: 32px;
    color: #f6c90e;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.card-chip {
    position: absolute;
    top: 10px;
    right: 5px;
}

.card-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.7);
}

/* =============================================
   SERVICE ITEMS
   ============================================= */
.service-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    width: 100%;
    min-height: 68px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    transform: translateY(-1px);
    color: #0d7a8a;
}

.service-item:hover .service-icon-wrap {
    background-color: #0d9488;
}

.service-item:hover .service-icon-wrap i {
    color: #ffffff;
}

.service-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #e8f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    transition: all 0.2s ease;
}

.service-icon-wrap i {
    font-size: 18px;
    color: #0d9488;
    transition: all 0.2s ease;
}

.service-name {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

.service-item:hover .service-name {
    color: #0d7a8a;
}

.service-arrow {
    color: #0d9488;
    font-size: 13px;
    margin-left: 10px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(3px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: linear-gradient(135deg, #0d4f5c 0%, #0a3d4a 100%);
    color: rgba(255,255,255,0.85);
    padding: 40px 0 20px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.footer-hr {
    border-color: rgba(255,255,255,0.15);
    margin: 20px 0 15px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* =============================================
   LOGO IMAGE
   ============================================= */
.navbar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* =============================================
   FEATURED CARD LINK
   ============================================= */
.featured-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.featured-card-link:hover .featured-card {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 79, 92, 0.4);
    transition: all 0.2s ease;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    background: linear-gradient(to right, #00c4c4 0%, #0d9488 25%, #1e2060 60%, #3d0030 100%);
    padding: 32px 0 28px;
    color: white;
}

.page-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.page-breadcrumb a:hover {
    color: #ffffff;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* =============================================
   PAGE SEARCH BAR
   ============================================= */
.page-search-bar {
    background: #f5f7fa;
    padding: 16px 0;
    border-bottom: 1px solid #e8ecf0;
}

.page-search-box {
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* =============================================
   SECTION HEADING
   ============================================= */
.section-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a2e3b;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ecf0;
    margin-bottom: 16px !important;
}

.section-heading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #0d9488;
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

/* =============================================
   ACTIVE SERVICE ITEM
   ============================================= */
.service-item-active {
    border-color: #0d9488 !important;
    background: #f0fafa !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15) !important;
}

/* =============================================
   ÖDEME FORM CARD
   ============================================= */
.odeme-form-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.odeme-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f4f8;
}

.odeme-form-header h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e3b;
}

.btn-odeme {
    background: linear-gradient(135deg, #0d9488, #0a7a70);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-odeme:hover {
    background: linear-gradient(135deg, #0a7a70, #085f58);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.odeme-guvenlik-notu {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* Hesaplama Sonuç */
.hesap-sonuc {
    background: #f0fafa;
    border: 1px solid #b2e0dc;
    border-radius: 8px;
    padding: 16px;
}

.sonuc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #d4eeec;
}

.sonuc-row:last-child {
    border-bottom: none;
}

.sonuc-toplam {
    font-weight: 700;
    font-size: 15px;
    color: #0d7a8a;
    padding-top: 10px;
    margin-top: 4px;
}

/* =============================================
   DUYURULAR PAGE
   ============================================= */
.duyuru-filtre {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-filtre {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    color: #555;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.btn-filtre:hover,
.btn-filtre.active {
    background: #0d9488;
    border-color: #0d9488;
    color: #ffffff;
}

.duyuru-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.duyuru-card:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.12);
}

.duyuru-card-left {
    flex-shrink: 0;
}

.duyuru-tarih {
    background: #0d9488;
    color: white;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    min-width: 60px;
}

.tarih-gun {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.tarih-ay {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.tarih-yil {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.duyuru-card-body {
    flex: 1;
}

.duyuru-baslik {
    font-size: 15px;
    font-weight: 700;
    color: #1a2e3b;
    margin-bottom: 6px;
}

.duyuru-ozet {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.duyuru-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
}

.badge-vergi     { background: #e8f4fd; color: #1a6fa8; }
.badge-uygulama  { background: #e8f7f0; color: #1a7a4a; }
.badge-beyanname { background: #fef3e8; color: #a85c1a; }
.badge-duyuru    { background: #f3e8fe; color: #6b1aa8; }
.badge-yeni      { background: #fee8e8; color: #a81a1a; }

.duyuru-card-right {
    flex-shrink: 0;
}

.btn-duyuru-detay {
    background: transparent;
    border: 1px solid #0d9488;
    color: #0d9488;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-duyuru-detay:hover {
    background: #0d9488;
    color: #ffffff;
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.login-card-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f4f8;
}

.login-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.login-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2e3b;
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.login-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.login-form .form-control {
    border-color: #e0e6ed;
    font-size: 14px;
    padding: 10px 14px;
}

.login-form .form-control:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.login-form .input-group-text {
    background: #f8fafc;
    border-color: #e0e6ed;
}

.btn-show-pass {
    cursor: pointer;
}

.sifremi-unuttum {
    font-size: 13px;
    color: #0d9488;
    text-decoration: none;
}

.sifremi-unuttum:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 8px 0;
    color: #aaa;
    font-size: 13px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #e8ecf0;
}

.login-divider::before { left: 0; }
.login-divider::after  { right: 0; }

.btn-edevlet {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edevlet:hover {
    background: #f5f7fa;
    border-color: #0d9488;
    color: #0d7a8a;
}

.login-footer-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f4f8;
}

.text-teal {
    color: #0d9488 !important;
}

/* =============================================
   MTV TRAFIK CEZASI PAGE
   ============================================= */
.mtv-page-wrapper {
    background-color: #f5f7fa;
    min-height: 60vh;
}

/* Breadcrumb Bar */
.mtv-breadcrumb-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecf0;
    padding: 12px 0;
}

.mtv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    flex-wrap: wrap;
}

.mtv-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.mtv-breadcrumb a:hover {
    color: #0d9488;
}

.bc-sep {
    color: #aaa;
    font-size: 10px;
}

.bc-current {
    color: #0d9488;
    font-weight: 500;
}

/* Page Title */
.mtv-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d9488;
    margin: 0;
}

/* Info Box */
.mtv-info-box {
    background-color: #e8f4fd;
    border: 1px solid #bee3f8;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mtv-info-icon {
    color: #3182ce;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mtv-info-text p {
    font-size: 13.5px;
    color: #2d3748;
    margin: 0 0 4px 0;
    line-height: 1.6;
}

.mtv-info-text p:last-child {
    margin-bottom: 0;
}

.mtv-info-link {
    color: #0d9488;
    text-decoration: none;
    font-weight: 500;
}

.mtv-info-link:hover {
    text-decoration: underline;
}

/* Form Card */
.mtv-form-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
}

/* Tapu Form Card (no tabs, simple bordered card) */
.tapu-form-card {
    background: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    padding: 28px 28px 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* =============================================
   CEP TELEFONU HARCI PAGE
   ============================================= */

/* Info box with right-side link */
.cep-info-box {
    background-color: #e8f4fd;
    border: 1px solid #bee3f8;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cep-info-text {
    flex: 1;
}

.cep-info-text p {
    font-size: 13.5px;
    color: #2d3748;
    margin: 0 0 2px 0;
    line-height: 1.6;
}

.cep-info-text p:last-child {
    margin-bottom: 0;
}

.cep-info-link-wrap {
    flex-shrink: 0;
    align-self: center;
}

/* Select wrapper */
.cep-select-wrap {
    position: relative;
}

.cep-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 36px;
}

.cep-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 12px;
    pointer-events: none;
}

/* Readonly input */
.cep-readonly {
    background-color: #f8fafc !important;
    color: #333;
    cursor: default;
}

/* Captcha row */
.cep-captcha-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cep-captcha-input {
    flex: 1;
    min-width: 0;
}

.cep-captcha-refresh {
    background: none;
    border: none;
    color: #0d9488;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cep-captcha-refresh:hover {
    transform: rotate(180deg);
    color: #0a7a70;
}

.cep-captcha-img {
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #d0d7de;
}

#captchaCanvas {
    display: block;
}

/* ÖDE button */
.btn-mtv-ode {
    background: #0d9488;
    color: #ffffff;
    border: none;
    padding: 10px 36px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.btn-mtv-ode:hover {
    background: #0a7a70;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* Tabs */
.mtv-tabs {
    display: flex;
    border-bottom: 2px solid #e8ecf0;
    background: #ffffff;
}

.mtv-tab {
    background: none;
    border: none;
    padding: 18px 28px;
    font-size: 13.5px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.mtv-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s;
}

.mtv-tab.active {
    color: #0d9488;
}

.mtv-tab.active::after {
    background: #0d9488;
}

.mtv-tab:hover {
    color: #0d9488;
}

/* Tab Content */
.mtv-tab-content {
    padding: 32px 32px 24px;
}

/* Form Labels */
.mtv-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

/* Form Inputs */
.mtv-input {
    width: 100%;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mtv-input:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.mtv-input::placeholder {
    color: #bbb;
}

/* Date Input Wrapper */
.mtv-date-wrap {
    position: relative;
}

.mtv-date-input {
    padding-right: 40px;
}

.mtv-date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
}

/* Radio Group */
.mtv-radio-group {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.mtv-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.mtv-radio {
    display: none;
}

.mtv-radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #aaa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.mtv-radio:checked + .mtv-radio-custom {
    border-color: #0d9488;
    background: #ffffff;
}

.mtv-radio:checked + .mtv-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d9488;
}

/* Form Buttons */
.mtv-form-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f4f8;
    margin-top: 8px;
}

.btn-mtv-temizle {
    background: #9ca3af;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.btn-mtv-temizle:hover {
    background: #6b7280;
}

.btn-mtv-sorgula {
    background: #0d9488;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.btn-mtv-sorgula:hover {
    background: #0a7a70;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* =============================================
   MTV CAPTCHA ROW
   ============================================= */
.mtv-captcha-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mtv-captcha-input {
    flex: 1;
    min-width: 0;
}

.mtv-captcha-refresh {
    background: none;
    border: none;
    color: #0d9488;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 8px;
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.2s;
    border-radius: 6px;
    line-height: 1;
}

.mtv-captcha-refresh:hover {
    color: #0a7a70;
    background: #f0fafa;
}

.mtv-captcha-refresh:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mtv-captcha-img-wrap {
    flex-shrink: 0;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    overflow: hidden;
    background: #f8fafc;
    width: 140px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mtv-captcha-img-wrap img {
    width: 140px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.mtv-captcha-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #0d9488;
    font-size: 18px;
}

.captcha-err {
    color: #e53e3e;
    font-size: 18px;
}

/* =============================================
   MTV ERROR BOX
   ============================================= */
.mtv-error-box {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #c53030;
}

.mtv-error-box i {
    font-size: 16px;
    flex-shrink: 0;
    color: #e53e3e;
}

/* =============================================
   MTV SONUÇ KARTI
   ============================================= */
.mtv-sonuc-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
}

/* Sonuç Başlık */
.mtv-sonuc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 14px;
    border-bottom: 1px solid #f0f4f8;
    flex-wrap: wrap;
    gap: 10px;
}

.mtv-sonuc-title-wrap {
    display: flex;
    align-items: center;
    color: #1a2e3b;
}

.mtv-sonuc-title-wrap i {
    color: #0d9488;
    font-size: 16px;
}

.mtv-sonuc-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2e3b;
}

.mtv-sonuc-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-sonuc-action {
    background: #ffffff;
    border: 1px solid #d0d7de;
    color: #555;
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-sonuc-action:hover {
    border-color: #0d9488;
    color: #0d9488;
    background: #f0fafa;
}

.btn-sonuc-action i {
    font-size: 14px;
}

/* =============================================
   MTV SONUÇ TABLO
   ============================================= */
.mtv-table-wrap {
    overflow-x: auto;
    padding: 0;
}

.mtv-sonuc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 900px;
}

.mtv-sonuc-table thead tr {
    background: #1a3a4a;
    color: #ffffff;
}

.mtv-sonuc-table thead th {
    padding: 12px 14px;
    font-weight: 600;
    font-size: 12.5px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.2px;
}

.mtv-sonuc-table thead th:last-child {
    border-right: none;
}

.mtv-sonuc-table thead th i {
    font-size: 10px;
    opacity: 0.6;
}

.mtv-sonuc-table thead th.th-check {
    width: 40px;
    text-align: center;
    cursor: default;
}

.mtv-sonuc-table thead th input[type="checkbox"] {
    accent-color: #0d9488;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.mtv-sonuc-table tbody tr {
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.15s;
}

.mtv-sonuc-table tbody tr:hover {
    background: #f7fffe;
}

.mtv-sonuc-table tbody tr:last-child {
    border-bottom: none;
}

.mtv-sonuc-table tbody td {
    padding: 11px 14px;
    color: #2d3748;
    vertical-align: middle;
    border-right: 1px solid #f0f4f8;
}

.mtv-sonuc-table tbody td:last-child {
    border-right: none;
}

.mtv-sonuc-table tbody td.td-check {
    text-align: center;
    width: 40px;
}

.mtv-sonuc-table tbody td input[type="checkbox"] {
    accent-color: #0d9488;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Seçili satır */
.mtv-sonuc-table tbody tr:has(.row-check:checked) {
    background: #f0fafa;
}

.td-vergi-turu {
    font-weight: 500;
    color: #1a2e3b;
    min-width: 180px;
}

.td-dosya {
    font-family: monospace;
    font-size: 12px;
    color: #555;
}

.td-tutar {
    text-align: right;
    font-weight: 600;
    color: #1a2e3b;
    white-space: nowrap;
}

.td-center {
    text-align: center;
}

.mtv-no-data {
    text-align: center;
    padding: 32px !important;
    color: #888;
    font-size: 14px;
}

/* =============================================
   MTV DATE HINT & DISABLED INPUT
   ============================================= */
.mtv-date-hint {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-left: 6px;
    font-style: italic;
}

.mtv-input-disabled {
    background-color: #f3f4f6 !important;
    color: #aaa !important;
    cursor: not-allowed !important;
    border-color: #e0e0e0 !important;
}

/* =============================================
   MTV YENİ SORGULAMA BUTONU
   ============================================= */
.btn-yeni-sorgulama {
    background: #ffffff;
    border: 1.5px solid #0d9488;
    color: #0d9488;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-yeni-sorgulama:hover {
    background: #0d9488;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(13, 148, 136, 0.25);
}

/* =============================================
   MTV SONUÇ FOOTER (Toplam + ÖDE)
   ============================================= */
.mtv-sonuc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-top: 1px solid #e8ecf0;
    background: #fafbfc;
    flex-wrap: wrap;
    gap: 12px;
}

.mtv-secili-info {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.mtv-toplam-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mtv-toplam-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a2e3b;
}

.mtv-toplam-tutar {
    font-size: 16px;
    font-weight: 700;
    color: #0d7a8a;
}

/* =============================================
   RIPPLE EFFECT
   ============================================= */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.15);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Active nav link */
.active-nav {
    color: #0d7a8a !important;
    background-color: #f0fafa;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 22px;
    }

    .nav-right-btns {
        margin-top: 10px;
    }

    .featured-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 18px;
    }

    .search-box {
        padding: 10px 16px;
    }

    .service-name {
        font-size: 12.5px;
    }
}

@media (max-width: 576px) {
    .logo-text span {
        font-size: 9px;
    }

    .btn-duyuru,
    .btn-giris {
        font-size: 12px;
        padding: 6px 12px;
    }
}
