/* ============================================
   EXTRA FEATURES - Premium Components
   Developer Hosting Theme
============================================ */

/* ============================================
   0. SYSTEM STATUS INDICATOR
============================================ */
.system-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.system-status-indicator:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #10B981;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
    white-space: nowrap;
}

/* ============================================
   0.1 SCROLL REVEAL ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-property: opacity, transform;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay Utilites */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* ============================================
   0.2 PRICING TOGGLE SWITCHER
============================================ */
.pricing-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.switcher-label {
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    transition: color 0.3s;
}

.switcher-label.active {
    color: #0f172a;
}

.switcher-label.yearly {
    position: relative;
}

.save-badge {
    position: absolute;
    top: -25px;
    right: -20px;
    background: #FF6B6B;
    color: white;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.save-badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FF6B6B;
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switcher-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.switcher-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input:checked+.switcher-slider {
    background-color: #0066FF;
}

input:checked+.switcher-slider:before {
    transform: translateX(28px);
}

.pkg-yearly-badge {
    position: absolute;
    top: 50px;
    right: 25px;
    background: #10B981;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.pkg-card.yearly-view .pkg-yearly-badge {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   1. DOMAIN SEARCH WIDGET
============================================ */
.domain-search-widget {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.domain-search-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.domain-search-widget::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.domain-search-content {
    position: relative;
    z-index: 1;
}

.domain-search-widget h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
}

.domain-search-widget .subtitle {
    font-size: 16px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 32px;
}

.domain-search-form {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 24px;
}

.domain-input-wrapper {
    flex: 1;
    position: relative;
}

.domain-input-wrapper input {
    width: 100%;
    padding: 18px 24px;
    padding-right: 120px;
    font-size: 16px;
    border: 2px solid #334155;
    border-radius: 14px;
    background: #1e293b;
    color: #ffffff;
    transition: all 0.3s ease;
}

.domain-input-wrapper input:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.15);
}

.domain-input-wrapper input::placeholder {
    color: #64748b;
}

.domain-extension-select {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #334155;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.domain-search-btn {
    padding: 18px 36px;
    background: linear-gradient(135deg, #00bcd4 0%, #0891b2 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.domain-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.domain-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Domain Prices */
.domain-prices {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.domain-price-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-price-item .ext {
    font-weight: 700;
    color: #00bcd4;
    font-size: 15px;
}

.domain-price-item .price {
    color: #ffffff;
    font-weight: 600;
}

.domain-price-item .old-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 13px;
}

/* Domain Search Results */
.domain-results {
    margin-top: 30px;
    display: none;
}

.domain-results.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.domain-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-result-item.available {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.domain-result-item.taken {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.domain-result-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.domain-result-status {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-result-item.available .domain-result-status {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.domain-result-item.taken .domain-result-status {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.domain-result-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.domain-result-label {
    font-size: 13px;
    color: #94a3b8;
}

.domain-result-price {
    font-size: 20px;
    font-weight: 800;
    color: #00bcd4;
}

.domain-result-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.domain-result-btn.disabled {
    background: #475569;
    color: #94a3b8;
    cursor: not-allowed;
}

/* ============================================
   2. WHATSAPP FLOATING BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #ffffff;
}

.whatsapp-tooltip .title {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 14px;
}

.whatsapp-tooltip .status {
    font-size: 12px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}

.whatsapp-tooltip .status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ============================================
   3. TESTIMONIAL SLIDER
============================================ */
.testimonials-slider-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-section::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 10%;
    font-size: 400px;
    font-family: Georgia, serif;
    color: rgba(0, 188, 212, 0.05);
    line-height: 1;
}

.testimonials-slider-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-slider-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.testimonials-slider-header p {
    font-size: 17px;
    color: #64748b;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-slider {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating svg {
    width: 24px;
    height: 24px;
    fill: #fbbf24;
}

.testimonial-content {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00bcd4;
}

.testimonial-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: #64748b;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00bcd4;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-arrow:hover {
    border-color: #00bcd4;
    color: #00bcd4;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   4. CAMPAIGN POPUP
============================================ */
.campaign-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.campaign-popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.campaign-popup {
    background: #ffffff;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.campaign-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.campaign-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.campaign-popup-close svg {
    width: 20px;
    height: 20px;
}

.campaign-popup-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.campaign-popup-header::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
}

.campaign-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
}

.campaign-popup-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
}

.campaign-popup-header p {
    color: #94a3b8;
    font-size: 15px;
    position: relative;
}

.campaign-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: relative;
}

.campaign-discount .value {
    font-size: 72px;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.campaign-discount .text {
    text-align: left;
    color: #ffffff;
}

.campaign-discount .text span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.campaign-discount .text small {
    font-size: 14px;
    color: #94a3b8;
}

.campaign-popup-body {
    padding: 30px;
}

.campaign-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.campaign-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #475569;
}

.campaign-features li:last-child {
    border-bottom: none;
}

.campaign-features li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.campaign-cta {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.campaign-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.campaign-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.timer-item {
    text-align: center;
}

.timer-value {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    min-width: 60px;
}

.timer-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
    text-transform: uppercase;
}

/* ============================================
   5. DARK MODE
============================================ */
.dark-mode-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
}

.dark-mode-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dark-mode-btn:hover {
    transform: scale(1.1);
    border-color: #00bcd4;
}

.dark-mode-btn svg {
    width: 24px;
    height: 24px;
    color: #0f172a;
    transition: all 0.3s ease;
}

.dark-mode-btn .icon-moon {
    display: block;
}

.dark-mode-btn .icon-sun {
    display: none;
}

/* Dark Mode Styles */
body.dark-mode {
    --bg-white: #0f172a;
    --bg-light: #1e293b;
    --bg-gray: #334155;
    --text-dark: #f1f5f9;
    --text-body: #cbd5e1;
    --text-light: #94a3b8;
    background: #0f172a;
    color: #f1f5f9;
}

body.dark-mode .dark-mode-btn {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .dark-mode-btn svg {
    color: #fbbf24;
}

body.dark-mode .dark-mode-btn .icon-moon {
    display: none;
}

body.dark-mode .dark-mode-btn .icon-sun {
    display: block;
}

body.dark-mode .site-header {
    background: #0f172a;
    border-color: #1e293b;
}

body.dark-mode .package-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .package-card .package-name {
    color: #f1f5f9;
}

body.dark-mode .comparison-table {
    background: #1e293b;
}

body.dark-mode .comparison-table thead th {
    background: #0f172a;
    color: #f1f5f9;
}

body.dark-mode .comparison-table tbody td {
    color: #cbd5e1;
    border-color: #334155;
}

body.dark-mode .testimonial-card-slider {
    background: #1e293b;
}

body.dark-mode .testimonial-content {
    color: #cbd5e1;
}

body.dark-mode .testimonial-info h4 {
    color: #f1f5f9;
}

/* Dark Mode - Blog Section Modern */
body.dark-mode .blog-section-modern {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .blog-section-modern::before {
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.2), transparent);
}

body.dark-mode .blog-section-title h2 {
    color: #f1f5f9;
}

body.dark-mode .blog-section-title p {
    color: #94a3b8;
}

body.dark-mode .blog-card-modern {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .blog-card-modern:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body.dark-mode .blog-placeholder-image {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

body.dark-mode .blog-placeholder-image svg {
    color: #64748b;
}

body.dark-mode .blog-card-title a {
    color: #f1f5f9;
}

body.dark-mode .blog-card-title a:hover {
    color: #ff7a00;
}

body.dark-mode .blog-card-excerpt {
    color: #94a3b8;
}

body.dark-mode .blog-date {
    color: #64748b;
}

body.dark-mode .blog-card-footer {
    border-color: #334155;
}

body.dark-mode .blog-author span {
    color: #cbd5e1;
}

body.dark-mode .blog-read-more {
    color: #ff7a00;
}

body.dark-mode .blog-read-more:hover {
    color: #ff9500;
}

/* ============================================
   6. SERVER STATUS WIDGET
============================================ */
.server-status-widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.server-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.server-status-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.status-badge-online {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.server-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.status-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.status-item .label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.status-item .value {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.status-item .value.green {
    color: #10b981;
}

.status-item .value.blue {
    color: #00bcd4;
}

.status-item .unit {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* ============================================
   7. NEWSLETTER FORM
============================================ */
.newsletter-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.newsletter-text p {
    color: #94a3b8;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid #334155;
    border-radius: 14px;
    background: #1e293b;
    color: #ffffff;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00bcd4;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 18px 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Data center map block: see datacenter-map.css */

/* ============================================
   9. STICKY CTA BAR - DISABLED
============================================ */
.sticky-cta-bar {
    display: none !important;
    visibility: hidden !important;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cta-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sticky-cta-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.sticky-cta-text p {
    font-size: 13px;
    color: #64748b;
}

.sticky-cta-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sticky-cta-price .old {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.sticky-cta-price .current {
    font-size: 28px;
    font-weight: 800;
    color: #00bcd4;
}

.sticky-cta-price .period {
    font-size: 14px;
    color: #64748b;
}

.sticky-cta-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* ============================================
   10. ANIMATED STATS COUNTER
============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::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"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="40" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="70" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="60" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: #00bcd4;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-number .counter {
    display: inline-block;
}

.stat-number .suffix {
    font-size: 24px;
    color: #fbbf24;
}

.stat-label {
    font-size: 15px;
    color: #94a3b8;
}

/* ============================================
   11. CUSTOMER PORTAL BUTTONS
============================================ */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.btn-customer-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-customer-panel:hover {
    background: #0f172a;
    color: #ff7a00;
    border-color: #ff7a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.3);
}

.btn-customer-panel svg {
    width: 18px;
    height: 18px;
}

.btn-customer-panel span {
    display: inline-block;
}

/* Old portal buttons - keep for compatibility */
.portal-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-portal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.btn-portal:hover {
    background: #00bcd4;
    color: #ffffff;
}

.btn-portal svg {
    width: 18px;
    height: 18px;
}

/* Responsive header actions */
@media (max-width: 1200px) {
    .btn-customer-panel span {
        display: none;
    }

    .btn-customer-panel {
        padding: 12px;
        border-radius: 50%;
    }
}

@media (max-width: 768px) {
    .header-right-actions {
        order: 2;
    }
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 992px) {
    .domain-search-form {
        flex-direction: column;
    }

    .domain-search-btn {
        width: 100%;
        justify-content: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .sticky-cta-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .domain-search-widget {
        padding: 30px 20px;
    }

    .domain-search-widget h3 {
        font-size: 24px;
    }

    .domain-prices {
        gap: 12px;
    }

    .testimonial-card-slider {
        padding: 30px 20px;
    }

    .testimonial-content {
        font-size: 16px;
    }

    .campaign-popup-header h3 {
        font-size: 22px;
    }

    .campaign-discount .value {
        font-size: 48px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .dark-mode-toggle {
        bottom: 90px;
        right: 20px;
    }
}

/* ============================================
   12. PRELOADER
============================================ */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s ease infinite;
}

.preloader-logo .site-name {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 30px;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 188, 212, 0.2);
    border-top-color: #00bcd4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   13. SCROLL TO TOP
============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00bcd4 0%, #0891b2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
    z-index: 9997;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   14. COOKIE CONSENT BANNER
============================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 99998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon svg {
    width: 28px;
    height: 28px;
    color: #fbbf24;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-link {
    color: #00bcd4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #00bcd4 0%, #0891b2 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .scroll-to-top {
        left: auto;
        right: 20px;
        bottom: 170px;
    }
}

/* ============================================
   15. LOADING SKELETON
============================================ */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 12px;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-title {
    height: 24px;
    width: 70%;
    margin-bottom: 16px;
}

.skeleton-image {
    height: 200px;
    margin-bottom: 16px;
}

.skeleton-card {
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   16. FEATURE HIGHLIGHTS
============================================ */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.feature-badge.new {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.feature-badge.popular {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
}

.feature-badge svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   17. ANIMATED GRADIENT BORDER
============================================ */
.gradient-border {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #00bcd4, #fbbf24, #ef4444, #00bcd4);
    background-size: 300% 300%;
    animation: gradient-border 4s ease infinite;
}

.gradient-border-inner {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
}

@keyframes gradient-border {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   18. GLASS MORPHISM
============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
}

body.dark-mode .glass-card {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   19. TOOLTIP
============================================ */
.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0f172a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   20. PROGRESS BAR
============================================ */
.progress-bar-container {
    background: #e2e8f0;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00bcd4 0%, #0891b2 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-bar.animated {
    animation: progress-animation 2s ease forwards;
}

@keyframes progress-animation {
    from {
        width: 0;
    }
}