/* ========== STICKY FULL HEADER ========== */
.sticky-full-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    background: #140c3a !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
    animation: slideDown 0.3s ease-out !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Sticky olduğunda top-menu gizle, sadece main-header göster */
.sticky-full-header .top-menu {
    display: none !important;
}

/* Sticky olduğunda menü arka planı */
.sticky-full-header .sticky {
    background: #140c3a !important;
}

/* Sticky header'dan sonra içeriğin üste kaçmaması için padding */
body.header-sticky-active {
    padding-top: 80px;
}

@media(max-width: 991px) {
    body.header-sticky-active {
        padding-top: 60px;
    }
}

/* ========== PREMIUM DOMAIN HERO ========== */
.domain-hero {
    min-height: auto;
    padding: 100px 0 80px;
    background: linear-gradient(165deg, #0f0828 0%, #140c3a 30%, #1a1050 60%, #0f0825 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(249, 189, 6, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 189, 6, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 189, 6, 0.12), transparent 70%);
    top: -15%;
    right: -5%;
    animation: orbMove1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 83, 117, 0.15), transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: orbMove2 25s ease-in-out infinite;
}

@keyframes orbMove1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

@keyframes orbMove2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 189, 6, 0.1);
    border: 1px solid rgba(249, 189, 6, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-badge i {
    color: #f9bd06;
    font-size: 1rem;
}

.hero-badge span {
    color: #f9bd06;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #f9bd06, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Search Box */
.domain-search-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 8px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.domain-search-inner {
    display: flex;
    gap: 8px;
}

.domain-search-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    font-size: 1rem;
    color: #fff;
    outline: none;
}

.domain-search-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.domain-search-btn {
    background: linear-gradient(135deg, #f9bd06, #fcd34d);
    border: none;
    border-radius: 14px;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 600;
    color: #140c3a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 189, 6, 0.3);
}

/* Price Info */
.price-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #f9bd06;
}

.price-period {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.price-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
}

/* Visual Section - Interactive Domain Animation */
.hero-visual {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.domain-animation-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

/* Central Search Box */
.central-search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    z-index: 20;
}

.search-input-fake {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.search-input-fake i {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
}

.typing-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4s steps(20) infinite;
}

@keyframes typing {
    0%, 100% { width: 0; }
    30%, 70% { width: 100%; }
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: #f9bd06;
    margin-left: 2px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.search-btn-fake {
    width: 100%;
    background: linear-gradient(135deg, #f9bd06, #fcd34d);
    border: none;
    border-radius: 12px;
    padding: 14px;
    color: #140c3a;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Orbiting Domain Bubbles */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
}

.domain-bubble {
    position: absolute;
    background: linear-gradient(145deg, rgba(249, 189, 6, 0.2), rgba(249, 189, 6, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    color: #f9bd06;
    white-space: nowrap;
    animation: orbitBubble 12s linear infinite;
}

.bubble-1 { animation-delay: 0s; }
.bubble-2 { animation-delay: -2s; }
.bubble-3 { animation-delay: -4s; }
.bubble-4 { animation-delay: -6s; }
.bubble-5 { animation-delay: -8s; }
.bubble-6 { animation-delay: -10s; }

@keyframes orbitBubble {
    0% { 
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        top: 0;
        left: 50%;
    }
    50% {
        top: 50%;
        left: 100%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    75% {
        top: 100%;
        left: 50%;
    }
    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

/* Pulse Ring */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(249, 189, 6, 0.2);
    animation: pulseExpand 3s ease-out infinite;
}

.ring-a { width: 300px; height: 300px; animation-delay: 0s; }
.ring-b { width: 300px; height: 300px; animation-delay: -1s; }
.ring-c { width: 300px; height: 300px; animation-delay: -2s; }

@keyframes pulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Corner Stats */
.corner-stat {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.corner-stat i {
    width: 36px;
    height: 36px;
    background: rgba(249, 189, 6, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9bd06;
    font-size: 1rem;
}

.corner-stat-text {
    display: flex;
    flex-direction: column;
}

.corner-stat-text strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.corner-stat-text span {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

.stat-top-left {
    top: 0;
    left: 0;
    animation: statFloat 4s ease-in-out infinite;
}

.stat-bottom-right {
    bottom: 0;
    right: 0;
    animation: statFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .domain-hero { padding: 80px 0 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-visual { margin-top: 50px; }
    .domain-animation-wrapper { width: 340px; height: 340px; }
    .central-search { width: 220px; padding: 18px; }
    .orbit-container { width: 300px; height: 300px; }
    .corner-stat { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .domain-search-inner { flex-direction: column; }
    .domain-search-btn { justify-content: center; }
    
    /* Fiyat alanı mobil için optimize */
    .price-info { 
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        margin-top: 25px !important;
        flex-wrap: wrap;
    }
    
    .price-tag {
        background: rgba(249, 189, 6, 0.1);
        padding: 12px 20px;
        border-radius: 12px;
        border: 1px solid rgba(249, 189, 6, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 140px;
    }
    
    .price-label {
        font-size: 13px !important;
        order: 1;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .price-value {
        font-size: 1.8rem !important;
        order: 2;
        color: #f9bd06 !important;
        font-weight: 700;
    }
    
    .price-period {
        font-size: 12px !important;
        order: 3;
        color: rgba(255, 255, 255, 0.5) !important;
    }
    
    .price-divider { display: none; }
    
    /* Mobil için hero-visual'ı gizleme, optimize et */
    .hero-visual { 
        display: block !important;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .domain-animation-wrapper {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto;
    }
    
    .pulse-ring {
        width: 280px !important;
        height: 280px !important;
    }
    
    .orbit-container {
        width: 240px !important;
        height: 240px !important;
    }
    
    .domain-bubble {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
    
    .central-search {
        width: 180px !important;
        height: 180px !important;
        padding: 15px !important;
    }
    
    .search-input-fake {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }
    
    .search-btn-fake {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }
    
    .typing-text {
        font-size: 10px !important;
    }
    
    /* Corner stats mobilde gizli */
    .corner-stat {
        display: none !important;
    }
}

/* ========== COMPACT BLUE TLD CARDS ========== */
.tld-section {
    padding: 60px 0;
    background: #fff;
}

.tld-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tld-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 189, 6, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.tld-section-badge i {
    color: #f9bd06;
}

.tld-section-badge span {
    font-size: 11px;
    font-weight: 600;
    color: #140c3a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tld-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #140c3a;
    margin-bottom: 10px;
}

.tld-section-desc {
    font-size: 14px;
    color: #64748b;
    max-width: 450px;
    margin: 0 auto;
}

.tld-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1200px) {
    .tld-cards-wrapper { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .tld-cards-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .tld-cards-wrapper { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.tld-card {
    background: linear-gradient(145deg, #140c3a, #1a1050);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tld-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 12, 58, 0.25);
}

.tld-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9bd06;
    color: #140c3a;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tld-extension {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    margin-top: 6px;
}

.tld-extension .dot {
    color: #f9bd06;
}

.tld-old-price {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.tld-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 2px;
}

.tld-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #f9bd06;
}

.tld-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.tld-period {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.tld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: #f9bd06;
    border: none;
    border-radius: 10px;
    color: #140c3a;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tld-btn:hover {
    background: #fff;
    color: #140c3a;
    transform: scale(1.02);
}

.tld-btn i {
    font-size: 11px;
}

/* ========== MODERN DOMAIN PRICING CARDS (Premium Style) ========== */
.domain-pricing-modern {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pricing-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 189, 6, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.pricing-section-badge i {
    color: #f9bd06;
}

.pricing-section-badge span {
    font-size: 11px;
    font-weight: 600;
    color: #140c3a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #140c3a;
    margin-bottom: 10px;
}

.pricing-section-desc {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Domain Package Grid */
.domain-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 1200px) {
    .domain-package-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .domain-package-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .domain-package-grid { grid-template-columns: 1fr; }
}

/* Domain Package Card */
.domain-package-card {
    background: linear-gradient(145deg, #f8fafc, #fff);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(20, 12, 58, 0.04);
}

.domain-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(20, 12, 58, 0.1);
}

.domain-package-card.featured {
    background: linear-gradient(145deg, #140c3a, #1a1050);
    border: 2px solid rgba(249, 189, 6, 0.3);
}

.domain-package-card.featured .domain-ext,
.domain-package-card.featured .domain-main-price,
.domain-package-card.featured .price-label {
    color: #fff;
}

.domain-package-card.featured .price-sub-value {
    color: rgba(255,255,255,0.7);
}

.domain-featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9bd06;
    color: #140c3a;
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.domain-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 189, 6, 0.15), rgba(249, 189, 6, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.domain-icon i {
    font-size: 1.3rem;
    color: #f9bd06;
}

.domain-ext {
    font-size: 1.5rem;
    font-weight: 800;
    color: #140c3a;
    margin-bottom: 4px;
}

.domain-ext .dot {
    color: #f9bd06;
}

.domain-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.domain-package-card.featured .domain-desc {
    color: rgba(255,255,255,0.6);
}

.domain-main-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #140c3a;
    margin-bottom: 2px;
}

.domain-main-price .currency {
    font-size: 0.9rem;
    color: #f9bd06;
}

.domain-period {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.domain-package-card.featured .domain-period {
    color: rgba(255,255,255,0.5);
}

/* Price Details */
.domain-price-details {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    text-align: left;
}

.domain-price-details li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(20, 12, 58, 0.06);
    font-size: 12px;
}

.domain-package-card.featured .domain-price-details li {
    border-color: rgba(255,255,255,0.08);
}

.domain-price-details li:last-child {
    border: none;
}

.domain-price-details li i {
    color: #f9bd06;
    font-size: 11px;
    margin-right: 6px;
}

.price-label {
    color: #140c3a;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.price-sub-value {
    color: #64748b;
    font-weight: 600;
}

.domain-buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #140c3a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.domain-buy-btn:hover {
    background: #f9bd06;
    color: #140c3a;
}

.domain-package-card.featured .domain-buy-btn {
    background: #f9bd06;
    color: #140c3a;
}

.domain-package-card.featured .domain-buy-btn:hover {
    background: #fff;
}

/* ========== EXTRA MOBİL OPTİMİZASYON ========== */

/* Küçük Mobil (480px altı) */
@media (max-width: 480px) {
    .domain-hero {
        padding: 60px 0 50px !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    /* Fiyat alanı küçük mobil için */
    .price-info {
        gap: 10px !important;
        margin-top: 20px !important;
    }
    
    .price-tag {
        padding: 10px 15px !important;
        min-width: 130px !important;
        border-radius: 10px !important;
    }
    
    .price-label {
        font-size: 12px !important;
    }
    
    .price-value {
        font-size: 1.5rem !important;
    }
    
    .price-period {
        font-size: 11px !important;
    }
    
    /* Arama kutusu mobil için */
    .domain-search-box {
        margin-bottom: 20px !important;
        padding: 6px !important;
        border-radius: 15px !important;
        width: 100% !important;
    }
    
    .domain-search-inner {
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }
    
    .domain-search-input {
        padding: 14px 18px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
        width: 100% !important;
    }
    
    .domain-search-btn {
        padding: 14px 20px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Hero visual mobilde daha küçük */
    .domain-animation-wrapper {
        width: 220px !important;
        height: 220px !important;
    }
    
    .pulse-ring {
        width: 220px !important;
        height: 220px !important;
    }
    
    .orbit-container {
        width: 190px !important;
        height: 190px !important;
    }
    
    .domain-bubble {
        font-size: 9px !important;
        padding: 4px 10px !important;
        min-width: 45px !important;
    }
    
    .central-search {
        width: 140px !important;
        height: 140px !important;
        padding: 12px !important;
    }
    
    .search-input-fake {
        padding: 6px 8px !important;
        font-size: 9px !important;
    }
    
    .search-btn-fake {
        padding: 6px 10px !important;
        font-size: 9px !important;
        gap: 4px !important;
    }
    
    .search-btn-fake i {
        font-size: 8px !important;
    }
    
    .typing-text {
        font-size: 8px !important;
    }
    
    .domain-search-box {
        margin-top: 25px !important;
    }
    
    .domain-search-input {
        font-size: 13px !important;
        padding: 12px 15px !important;
    }
    
    .domain-search-btn {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
    
    .price-info {
        margin-top: 20px !important;
    }
    
    .price-tag {
        padding: 10px 15px !important;
    }
}

/* Çok Küçük Mobil (360px altı) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem !important;
    }
    
    /* Fiyatlar çok küçük ekranda */
    .price-tag {
        padding: 8px 12px !important;
        min-width: 110px !important;
    }
    
    .price-value {
        font-size: 1.3rem !important;
    }
    
    .price-label {
        font-size: 11px !important;
    }
    
    .price-period {
        font-size: 10px !important;
    }
    
    /* Arama kutusu çok küçük ekranda */
    .domain-search-box {
        width: 100% !important;
    }
    
    .domain-search-input {
        padding: 12px 15px !important;
        font-size: 13px !important;
        width: 100% !important;
    }
    
    .domain-search-btn {
        padding: 12px 18px !important;
        font-size: 13px !important;
        width: 100% !important;
    }
    
    .domain-animation-wrapper {
        width: 180px !important;
        height: 180px !important;
    }
    
    .pulse-ring {
        width: 180px !important;
        height: 180px !important;
    }
    
    .orbit-container {
        width: 160px !important;
        height: 160px !important;
    }
    
    .central-search {
        width: 120px !important;
        height: 120px !important;
        padding: 10px !important;
    }
    
    .domain-bubble {
        font-size: 8px !important;
        padding: 3px 8px !important;
        min-width: 40px !important;
    }
}

/* Tablet & Landscape Mobil için düzeltme */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-visual {
        display: block !important;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .domain-animation-wrapper {
        width: 320px !important;
        height: 320px !important;
    }
    
    .orbit-container {
        width: 280px !important;
        height: 280px !important;
    }
}

/* ========== ARAMA KUTUSU ARKASINDAKİ ANIMASYON ========== */

/* Desktop - sağdaki hero-visual'ı GÖSTER */
@media (min-width: 769px) {
    .hero-visual {
        display: block !important;
    }
    
    .hero-visual-mobile {
        display: none !important;
    }
    
    .search-with-animation {
        position: relative;
    }
}

/* Mobil - arama kutusunun arkasına animasyon yerleştir */
.search-with-animation {
    position: relative;
    margin-top: 20px;
}

.hero-visual-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.domain-search-box {
    position: relative;
    z-index: 2;
}

/* Mobil optimizasyonları */
@media (max-width: 768px) {
    .hero-visual {
        display: none !important;
    }
    
    .hero-visual-mobile {
        display: block !important;
        opacity: 0.3;
    }
    
    .search-with-animation {
        margin-top: 15px;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .domain-search-box {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-visual-mobile .domain-animation-wrapper {
        width: 280px !important;
        height: 280px !important;
    }
    
    .hero-visual-mobile .pulse-ring {
        width: 280px !important;
        height: 280px !important;
    }
    
    .hero-visual-mobile .orbit-container {
        width: 240px !important;
        height: 240px !important;
    }
    
    .hero-visual-mobile .central-search {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .search-with-animation {
        min-height: 220px;
        margin-top: 10px;
    }
    
    .hero-visual-mobile .domain-animation-wrapper {
        width: 220px !important;
        height: 220px !important;
    }
    
    .hero-visual-mobile .pulse-ring {
        width: 220px !important;
        height: 220px !important;
    }
    
    .hero-visual-mobile .orbit-container {
        width: 190px !important;
        height: 190px !important;
    }
}

@media (max-width: 360px) {
    .search-with-animation {
        min-height: 200px;
        margin-top: 10px;
    }
    
    .hero-visual-mobile .domain-animation-wrapper {
        width: 180px !important;
        height: 180px !important;
    }
    
    .hero-visual-mobile .pulse-ring {
        width: 180px !important;
        height: 180px !important;
    }
    
    .hero-visual-mobile .orbit-container {
        width: 160px !important;
        height: 160px !important;
    }
}

/* ========== MOBİL LİSTE TASARIMI - ALAN ADI FİYATLARI ========== */

@media (max-width: 768px) {
    /* Grid yerine liste */
    .domain-package-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    /* Kart tasarımını liste formatına çevir */
    .domain-package-card {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 16px !important;
        text-align: left !important;
        border-radius: 12px !important;
        min-height: auto !important;
        gap: 12px !important;
    }
    
    .domain-package-card:hover {
        transform: translateY(-2px) !important;
    }
    
    /* Featured badge mobilde */
    .domain-featured-badge {
        position: absolute;
        top: 4px;
        right: 4px;
        left: auto;
        transform: none;
        font-size: 8px;
        padding: 3px 10px;
        z-index: 2;
    }
    
    /* Sol taraf - icon ve domain bilgisi */
    .domain-icon {
        width: 38px !important;
        height: 38px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        order: 1;
    }
    
    .domain-icon i {
        font-size: 1rem !important;
    }
    
    /* Domain extension - ortada */
    .domain-ext {
        font-size: 1.15rem !important;
        margin-bottom: 0 !important;
        display: block !important;
        flex-grow: 1 !important;
        order: 2;
        text-align: left !important;
    }
    
    /* Açıklama, detaylar, buton gizle */
    .domain-desc,
    .domain-price-details,
    .domain-period,
    .domain-buy-btn {
        display: none !important;
    }
    
    /* Sağ taraf - fiyat */
    .domain-main-price {
        font-size: 1.4rem !important;
        margin: 0 !important;
        text-align: right !important;
        flex-shrink: 0 !important;
        order: 3;
        white-space: nowrap;
    }
    
    .currency {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .domain-package-card {
        padding: 12px 14px !important;
        gap: 10px !important;
    }
    
    .domain-icon {
        width: 34px !important;
        height: 34px !important;
    }
    
    .domain-icon i {
        font-size: 0.9rem !important;
    }
    
    .domain-ext {
        font-size: 1.05rem !important;
    }
    
    .domain-main-price {
        font-size: 1.25rem !important;
    }
    
    .currency {
        font-size: 0.9rem !important;
    }
    
    .domain-featured-badge {
        font-size: 7px;
        padding: 2px 8px;
    }
}

