/* .TR Domain Sayfası - Modern Tasarım */

/* Genel Stil Düzenlemeleri */
:root {
    --primary-color: #2d3748;
    --primary-dark: #003d82;
    --accent-color: #ff6b35; /* Yeni accent rengi - arka planla karışmayan */
    --secondary-color: #4a5568;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-color: #f8f9fa;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark-color: #212529;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tr-domain-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Bootstrap override fixes for header compatibility */
.tr-domain-page .navbar,
.tr-domain-page .navbar-brand,
.tr-domain-page .navbar-nav,
.tr-domain-page .nav-link,
.tr-domain-page .nav-item {
    all: unset;
    display: revert;
}

/* Header'ı korumalı reset */
.tr-domain-page .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background-color: white !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.tr-domain-page .header .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.tr-domain-page .top-bar {
    background-color: #0a2540 !important;
    color: white !important;
    padding: 0.5rem 0 !important;
    font-size: 0.875rem !important;
}

.tr-domain-page .nav-container {
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.tr-domain-page .logo {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1f36 !important;
    min-width: 150px !important;
    display: flex !important;
    align-items: center !important;
}

.tr-domain-page .logo img {
    height: 40px !important;
    width: auto !important;
    max-width: 100% !important;
}

.tr-domain-page .nav-menu {
    display: flex !important;
    gap: 0.6rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tr-domain-page .nav-item {
    position: relative !important;
    display: block !important;
}

.tr-domain-page .nav-link {
    color: #1a1f36 !important;
    font-weight: 500 !important;
    padding: 0.5rem 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
}

.tr-domain-page .nav-link:hover {
    color: #7a73ff !important;
}

/* Header link düzeltmeleri - alt çizgi ve text decoration kaldırma */
.tr-domain-page .header a,
.tr-domain-page .top-bar a,
.tr-domain-page .nav-link,
.tr-domain-page .nav-dropdown-link,
.tr-domain-page .logo,
.tr-domain-page .top-link {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.tr-domain-page .header a:hover,
.tr-domain-page .top-bar a:hover,
.tr-domain-page .nav-link:hover,
.tr-domain-page .nav-dropdown-link:hover,
.tr-domain-page .logo:hover,
.tr-domain-page .top-link:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Nav dropdown düzeltmeleri */
.tr-domain-page .nav-dropdown {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    min-width: 320px !important;
    background-color: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
    padding: 1rem !important;
    top: 100% !important;
    border: 1px solid #f0f4f7 !important;
}

.tr-domain-page .nav-item:hover .nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Nav dropdown icon düzeltmeleri */
.tr-domain-page .nav-dropdown-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    background-color: #f3f4f6 !important;
    color: #7a73ff !important;
    font-size: 1.25rem !important;
}

/* Chevron icon düzeltmeleri */
.tr-domain-page .nav-menu-chevron {
    transition: transform 0.3s ease !important;
    font-size: 1rem !important;
    color: #9ca3af !important;
}

.tr-domain-page .nav-item:hover .nav-menu-chevron {
    transform: rotate(180deg) !important;
    color: #7a73ff !important;
}

/* Mobile menu düzeltmeleri */
.tr-domain-page .mobile-menu-header {
    display: none !important;
}

.tr-domain-page .mobile-menu-logo {
    display: none !important;
}

.tr-domain-page .mobile-toggle {
    display: none !important;
}

.tr-domain-page .mobile-close {
    display: none !important;
}

@media (max-width: 768px) {
    .tr-domain-page .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background: white !important;
        padding: 60px 20px 20px !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    
    .tr-domain-page .nav-menu.active {
        right: 0 !important;
    }
    
    .tr-domain-page .nav-item {
        border-bottom: 1px solid #f0f4f7 !important;
        margin-bottom: 0 !important;
    }
    
    .tr-domain-page .nav-link {
        padding: 15px 0 !important;
        font-size: 16px !important;
        border-bottom: none !important;
    }
    
    .tr-domain-page .mobile-toggle {
        display: flex !important;
        cursor: pointer !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 32px !important;
        height: 32px !important;
        border: none !important;
        background: none !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .tr-domain-page .mobile-toggle-icon,
    .tr-domain-page .mobile-toggle-icon::before,
    .tr-domain-page .mobile-toggle-icon::after {
        width: 24px !important;
        height: 2px !important;
        background: #1a1f36 !important;
        transition: all 0.3s ease !important;
    }
    
    .tr-domain-page .mobile-close {
        display: block !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        background: none !important;
        border: none !important;
        font-size: 24px !important;
        cursor: pointer !important;
        color: #1a1f36 !important;
        z-index: 1002 !important;
    }
}

/* Body padding düzeltmesi */
.tr-domain-page {
    padding-top: 100px !important;
}

.tr-domain-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr-domain-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.tr-domain-page .col-lg-3,
.tr-domain-page .col-lg-4,
.tr-domain-page .col-lg-6,
.tr-domain-page .col-lg-8,
.tr-domain-page .col-md-6 {
    padding: 0 15px;
    flex: 1;
}

.tr-domain-page .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.tr-domain-page .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.tr-domain-page .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.tr-domain-page .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.tr-domain-page .col-md-6 { flex: 0 0 50%; max-width: 50%; }

.tr-domain-page .text-center { text-align: center; }
.tr-domain-page .text-lg-end { text-align: right; }
.tr-domain-page .align-items-center { align-items: center; }
.tr-domain-page .justify-content-center { justify-content: center; }

.tr-domain-page .mb-4 { margin-bottom: 1.5rem; }

/* Campaign Banner - Modern Geometric Design */
.campaign-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, var(--accent-color) 100%);
    color: white;
    padding: 16px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

/* Animated geometric shapes */
.campaign-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-shape 8s infinite ease-in-out;
}

.campaign-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph-shape 6s infinite ease-in-out reverse;
}

/* Floating dots pattern */
.campaign-banner .campaign-content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 15px 15px;
    border-radius: 50%;
    animation: rotate-dots 12s linear infinite;
}

.campaign-banner .campaign-content::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: pulse-cross 4s infinite ease-in-out;
}

@keyframes float-shape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        border-radius: 50%;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        border-radius: 20% 80% 80% 20% / 20% 80% 20% 80%;
    }
    75% { 
        transform: translateY(-25px) rotate(270deg);
        border-radius: 70% 30% 30% 70% / 50% 50% 50% 50%;
    }
}

@keyframes morph-shape {
    0%, 100% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 58% 42% 75% 25% / 76% 24% 76% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% { 
        border-radius: 50% 50% 33% 67% / 55% 45% 55% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% { 
        border-radius: 33% 67% 58% 42% / 63% 37% 63% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes rotate-dots {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulse-cross {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.3) rotate(45deg);
    }
}

@keyframes glow-line {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(1px);
}

@media (max-width: 768px) {
    .campaign-banner {
        padding: 14px 0;
    }
    
    .campaign-content {
        gap: 18px;
        padding: 0 15px;
        flex-direction: column;
    }
    
    .campaign-icon {
        order: 1;
        padding: 10px;
    }
    
    .campaign-icon i {
        width: 20px;
        height: 20px;
    }
    
    .campaign-text {
        font-size: 15px;
        order: 2;
        max-width: 90%;
        line-height: 1.4;
    }
    
    .campaign-text .highlight {
        padding: 3px 10px;
        font-size: 14px;
    }
    
    .campaign-timer {
        order: 3;
        font-size: 16px;
        padding: 10px 16px;
        letter-spacing: 0.5px;
    }
    
    /* Geometric shapes düzenlemesi */
    .campaign-banner::before {
        width: 120px;
        height: 120px;
        top: -30%;
        left: -15%;
    }
    
    .campaign-banner::after {
        width: 100px;
        height: 100px;
        bottom: -20%;
        right: -5%;
    }
    
    .campaign-banner .campaign-content::before {
        width: 50px;
        height: 50px;
        background-size: 10px 10px;
    }
    
    .campaign-banner .campaign-content::after {
        width: 40px;
        height: 40px;
    }
}

.campaign-icon {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: icon-pulse 3s infinite ease-in-out;
}

.campaign-icon i {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes icon-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.campaign-text {
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.campaign-text .highlight {
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.35));
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: inline-block;
    transform: translateY(-1px);
}

.campaign-timer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.25));
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.campaign-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    animation: timer-shine 4s infinite;
}

@keyframes timer-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Section */
.tr-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.tr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #80eaff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 212, 255, 0.3);
    position: relative;
    display: inline-block;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #80eaff 100%);
    opacity: 0.1;
    border-radius: 8px;
    z-index: -1;
    transform: skew(-2deg);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-search {
    max-width: 500px;
}

.search-form {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    padding: 4px;
    box-shadow: var(--shadow-lg);
}

.search-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
    color: var(--primary-color);
}

.search-input::placeholder {
    color: var(--gray-600);
}

.search-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.search-btn i {
    width: 18px;
    height: 18px;
}

.popular-extensions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.extension-label {
    font-size: 14px;
    opacity: 0.8;
    white-space: nowrap;
}

.extensions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ext {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.ext:hover,
.ext.featured {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.domain-showcase {
    position: relative;
}

.domain-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    color: var(--primary-color);
}

.domain-card.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.domain-header i {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.domain-header span {
    font-size: 18px;
    font-weight: 600;
}

.domain-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.domain-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.domain-status i {
    width: 16px;
    height: 16px;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.point i {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.point span {
    font-size: 14px;
    font-weight: 500;
}

/* Domain Pricing Section */
.domain-pricing-section {
    padding: 100px 0;
    background: var(--light-color);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 20px;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Pricing Badge - Sağ köşede çapraz */
.pricing-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    transform: rotate(0deg);
    min-width: 100px;
    text-align: center;
}

/* .tr domain için YENİ badge */
.pricing-card:has(h3:contains('.tr')) .pricing-badge::after,
.pricing-card h3:contains('.tr') ~ .pricing-badge::after {
    content: 'YENİ';
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--success-color);
    color: white;
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    min-width: 100px;
    text-align: center;
}

/* .tr extension için özel badge */
.pricing-card:nth-child(4) .pricing-badge {
    background: var(--success-color);
}

.pricing-card:nth-child(4) .pricing-badge::before {
    content: 'YENİ';
}

.pricing-price {
    margin-bottom: 25px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price .amount.discounted {
    text-decoration: line-through;
    color: var(--gray-600);
    font-size: 1.5rem;
    margin-right: 10px;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-features .feature i {
    width: 16px;
    height: 16px;
    color: var(--success-color);
}

.pricing-features .feature span {
    font-size: 14px;
    color: var(--gray-600);
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    justify-content: center;
    width: 100%;
}

.pricing-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

.pricing-btn i {
    width: 16px;
    height: 16px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Why TR Section */
.why-tr-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: white !important;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/* How to Register */
.how-to-register {
    padding: 100px 0;
    background: var(--light-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-content {
    margin-bottom: 20px;
    padding-top: 15px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.step-icon {
    text-align: center;
}

.step-icon i {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion {
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header .accordion-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    box-shadow: none;
    transition: none;
}

.accordion-button:hover {
    background: white !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--accent-color);
}

.accordion-button:not(.collapsed):hover {
    background: var(--light-color) !important;
    color: var(--accent-color) !important;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 0 25px 25px;
    color: var(--gray-600);
    line-height: 1.6;
}

.accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    background: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn i {
    width: 18px;
    height: 18px;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trust-content {
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.trust-item i {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Alert Styles */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid;
}

.alert.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #92400e;
}

.alert.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #1e40af;
}

.alert i {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tr-domain-page .col-lg-3,
    .tr-domain-page .col-lg-4,
    .tr-domain-page .col-lg-6,
    .tr-domain-page .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tr-hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-highlight::before {
        transform: skew(-1deg);
        box-shadow: 0 2px 12px rgba(0, 212, 255, 0.15);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .domain-pricing-section,
    .why-tr-section,
    .how-to-register,
    .faq-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .popular-extensions {
        justify-content: center;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .search-btn {
        justify-content: center;
    }
    
    .cta-content .row {
        text-align: center !important;
    }
    
    .tr-domain-page .text-lg-end {
        text-align: center !important;
    }
    
    .tr-domain-page .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tr-hero,
    .domain-pricing-section,
    .why-tr-section,
    .how-to-register,
    .faq-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-desc {
        font-size: 1rem;
    }
} 