/* ============================================
   HOSTIWEX - Professional Hosting Website
   Modern & Professional Design
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Hetzner Style Koyu Kırmızı */
    --primary-color: #d50000;
    --primary-dark: #b00000;
    --primary-hover: #e60000;
    
    /* Text Colors - Hetzner Style */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    
    /* Background Colors - Hetzner Style Ferah Beyaz */
    --bg-white: #ffffff;
    --bg-light: #f0f0f0;
    --bg-lighter: #e8e8e8;
    --bg-dark: #1a1a1a;
    --bg-dark-light: #2a2a2a;
    
    /* Border & Divider - Hetzner Style İnce */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    
    /* Status Colors */
    --success-color: #28a745;
    --danger-color: #dc3545;
    
    /* Shadows - Hetzner Style Çok Hafif */
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition: all 0.2s ease;
    
    /* Logo Colors */
    --logo-gray: #666666;
    
    /* Professional Enhancements */
    --focus-ring: 0 0 0 3px rgba(255, 0, 0, 0.1);
    --focus-ring-offset: 2px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Font Awesome Icons - Ensure icons display correctly */
.fas, .far, .fab, .fa,
i.fas, i.far, i.fab, i.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1 !important;
    display: inline-block !important;
    width: auto;
    height: auto;
}

.fab,
i.fab {
    font-family: "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 400 !important;
}

.far,
i.far {
    font-family: "Font Awesome 6 Free", "FontAwesome" !important;
    font-weight: 400 !important;
}

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

/* Top Bar - Gri/Siyah Arka Plan */
.top-bar {
    background: var(--bg-dark);
    color: #fff;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
    position: relative;
    z-index: 10002;
}

/* Mobile top-bar - thicker for easier clicking */
@media (max-width: 768px) {
    .top-bar {
        padding: 14px 0;
        font-size: 13px;
    }
    
    .top-bar-content {
        gap: 12px;
    }
    
    .top-cart-wrapper {
        margin-right: 0;
        margin-left: 0;
    }
    
    .top-cart-link {
        padding: 3px 8px;
        min-width: auto;
        min-height: auto;
        border-radius: 4px;
    }
    
    .top-cart-link i {
        font-size: 11px !important;
    }
    
    /* All top-bar icons same size on mobile - smaller and consistent */
    .top-bar-left a i,
    .top-bar-right a i,
    .top-bar-right .panel-link i,
    .top-bar-right .contact-link i,
    .top-cart-link i,
    .top-bar-right .user-link i,
    .top-bar-right .logout-link i,
    .language-btn i:first-child,
    .currency-btn i:first-child {
        font-size: 14px !important;
        margin-right: 5px;
    }
    
    .top-cart-count {
        top: -3px;
        right: -3px;
        min-width: 22px;
        height: 22px;
        font-size: 12px;
        font-weight: 800;
    }
    
    .top-bar-left a {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .top-bar-right .panel-link,
    .top-bar-right .contact-link {
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 16px 0;
        font-size: 13px;
    }
    
    .top-cart-wrapper {
        margin-right: 0;
        margin-left: 0;
    }
    
    .top-cart-link {
        padding: 3px 8px;
        min-width: auto;
        min-height: auto;
    }
    
    .top-cart-link i {
        font-size: 11px !important;
    }
    
    /* All top-bar icons same size on mobile - smaller and consistent */
    .top-bar-left a i,
    .top-bar-right a i,
    .top-bar-right .panel-link i,
    .top-bar-right .contact-link i,
    .top-cart-link i,
    .top-bar-right .user-link i,
    .top-bar-right .logout-link i,
    .language-btn i:first-child,
    .currency-btn i:first-child {
        font-size: 15px !important;
        margin-right: 6px;
    }
    
    .top-cart-count {
        min-width: 24px;
        height: 24px;
        font-size: 13px;
    }
    
    .top-bar-left a {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .top-bar-right .panel-link,
    .top-bar-right .contact-link {
        font-size: 13px;
        padding: 9px 13px;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.top-bar-left a,
.top-bar-right a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-right: 0;
    transition: var(--transition);
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
}

/* Top bar buttons with border */
.top-bar-btn {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px;
    padding: 6px 12px !important;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Remove border from cart link */
.top-cart-link {
    border: none !important;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: #fff;
    opacity: 1;
}

.top-bar-left a i,
.top-bar-right a i {
    margin-right: 5px;
    font-size: 15px;
    display: inline-block;
    width: auto;
    height: auto;
}

.top-bar-right .panel-link i,
.top-bar-right .contact-link i {
    font-size: 15px;
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.top-bar-left {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-bar-left {
    pointer-events: none;
}

.top-bar-left a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    pointer-events: auto;
    gap: 5px;
    font-size: 11px;
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 10003;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 3px 6px;
    border-radius: 4px;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: var(--transition);
    font-weight: 400;
    pointer-events: auto !important;
    user-select: none;
    white-space: nowrap;
    position: relative;
    z-index: 10003;
}

.language-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-btn i {
    font-size: 11px !important;
    display: inline-block !important;
    width: auto;
    height: auto;
    font-family: "Font Awesome 6 Free" !important;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-white) !important;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    border: 1px solid var(--border-color);
    padding: 4px 0;
    z-index: 10004;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    display: none;
    pointer-events: none;
}

.language-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
    z-index: 10005 !important;
}

.language-option {
    display: block;
    padding: 8px 16px;
    color: #1a1a1a !important;
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 400;
    background: transparent;
}

.language-option:hover {
    background: var(--bg-lighter) !important;
    color: var(--primary-color) !important;
}

.language-option.active {
    background: var(--bg-lighter) !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Currency Selector */
.currency-selector {
    position: relative;
    z-index: 10003;
}

.currency-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: var(--transition);
    font-weight: 400;
    pointer-events: auto !important;
    user-select: none;
    white-space: nowrap;
    position: relative;
    z-index: 10003;
    margin: 0;
}

.currency-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.currency-btn i {
    font-size: 11px !important;
    display: inline-block !important;
    width: auto;
    height: auto;
    font-family: "Font Awesome 6 Free" !important;
}

.currency-btn i:last-child {
    font-size: 10px !important;
    margin-left: 5px;
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #ffffff !important;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    border: 1px solid #e0e0e0;
    padding: 4px 0;
    z-index: 10004;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    display: none;
    pointer-events: none;
}

.currency-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
    z-index: 10005 !important;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #1a1a1a !important;
    text-decoration: none;
    transition: var(--transition);
    font-size: 12px;
    font-weight: 400;
    background: transparent;
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-option:hover {
    background: var(--bg-lighter) !important;
    color: var(--primary-color) !important;
}

.currency-option.active {
    background: var(--bg-lighter) !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.currency-option i {
    color: #1a1a1a !important;
}

.currency-option:hover i {
    color: var(--primary-color) !important;
}

.panel-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9) !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    font-weight: 400;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    margin: 0;
}

.panel-link i {
    font-size: 11px;
}

.panel-link span {
    font-size: 11px;
}

.contact-link.top-bar-btn {
    padding: 3px 8px !important;
    font-size: 11px !important;
    margin-left: 0 !important;
}

.contact-link.top-bar-btn i {
    font-size: 11px !important;
}

.contact-link.top-bar-btn span {
    font-size: 11px !important;
}

.panel-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navigation - Ferah ve Temiz */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    border-bottom: 1px solid var(--border-light);
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--logo-gray);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
}

.logo-orange {
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

/* Top Bar User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.user-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    font-size: 12px;
}

.user-link:hover {
    color: #fff;
}

.user-link i {
    font-size: 14px;
}

.user-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logout-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.logout-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Top Bar Cart */
.top-cart-wrapper {
    position: relative;
    margin: 0;
    order: -1;
    display: inline-flex;
    align-items: center;
}

/* Web cart dropdown - ensure it stays within viewport */
@media (min-width: 769px) {
    .cart-dropdown {
        right: 0;
        left: auto;
        max-width: 380px;
    }
    
    /* If dropdown would go off screen, align to left */
    .top-cart-wrapper:last-child .cart-dropdown {
        right: auto;
        left: 0;
    }
}

.top-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    margin: 0;
    gap: 4px;
}

.top-cart-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.top-cart-link i {
    margin-right: 0;
    font-size: 11px;
}

/* Web: All top-bar icons same size */
@media (min-width: 769px) {
    .top-bar-left a i,
    .top-bar-right a i,
    .top-bar-right .panel-link i,
    .top-bar-right .contact-link i,
    .top-cart-link i,
    .top-bar-right .user-link i,
    .top-bar-right .logout-link i {
        font-size: 14px;
        margin-right: 5px;
    }
}

.top-cart-count {
    position: absolute;
    top: -8px;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.top-cart-count:empty {
    display: none;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    margin-top: 10px;
    width: 380px;
    max-width: calc(100vw - 20px);
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    flex-direction: column;
    max-height: 500px;
    overflow: hidden;
}

/* Mobile cart dropdown - responsive */
@media (max-width: 768px) {
    .cart-dropdown {
        right: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        max-height: 100vh !important;
        z-index: 100000 !important;
    }
    
    .top-cart-wrapper {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .cart-dropdown {
        right: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        max-height: 100vh !important;
        z-index: 100000 !important;
    }
    
    .top-cart-wrapper {
        margin-right: 0;
        margin-left: 0;
    }
}

.cart-dropdown.show {
    display: flex;
}

.cart-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-lighter);
}

.cart-dropdown-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cart-dropdown-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    max-height: 350px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.cart-empty p {
    margin: 0;
    font-size: 14px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.cart-item:hover {
    background: var(--bg-lighter);
}

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

.cart-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-price {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.cart-qty-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.cart-qty-input {
    width: 50px;
    height: 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.cart-dropdown-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-lighter);
}

.cart-total {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
    text-align: right;
}

.cart-total strong {
    font-weight: 700;
}

.cart-total span {
    color: var(--primary-color);
    font-size: 18px;
}

.btn-cart-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-cart-checkout:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(213, 0, 0, 0.3);
}

.btn-cart-checkout i {
    font-size: 16px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--text-dark);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: var(--transition);
    display: inline-block;
    width: auto;
    height: auto;
}

/* Client Area Button in Navbar */
.nav-client-area {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    margin-left: 10px;
    transition: all 0.3s ease !important;
    line-height: 1.4;
    display: none !important; /* Hidden on desktop by default */
}

/* Hide Client Area button on desktop (769px and above) */
@media (min-width: 769px) {
    .nav-client-area,
    .nav-menu .nav-client-area,
    .nav-menu li .nav-client-area,
    li.nav-client-area,
    .nav-menu > li > .nav-client-area,
    .nav-client-area-item {
        display: none !important;
    }
}

.nav-client-area:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.25);
}

.nav-client-area::after {
    display: none !important;
}

.nav-client-area i {
    font-size: 11px !important;
    margin-right: 4px;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile dropdown active state */
.nav-dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section - Ferah Beyaz */
.hero {
    background: var(--bg-lighter);
    background-image: url('../images/wall.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-dark);
    padding: 120px 0 100px;
    position: relative;
    overflow: visible;
    min-height: 600px;
    display: flex;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    will-change: background-image;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

/* Smooth GIF loop transition overlay - masks the replay transition */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
    pointer-events: none;
    animation: smoothGifLoop 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes smoothGifLoop {
    0%, 100% {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
    }
    47% {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
    }
    48% {
        opacity: 0.04;
        background: rgba(0, 0, 0, 0.04);
    }
    49% {
        opacity: 0.06;
        background: rgba(0, 0, 0, 0.06);
    }
    50% {
        opacity: 0.08;
        background: rgba(0, 0, 0, 0.08);
    }
    51% {
        opacity: 0.06;
        background: rgba(0, 0, 0, 0.06);
    }
    52% {
        opacity: 0.04;
        background: rgba(0, 0, 0, 0.04);
    }
    53% {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
    }
}

/* Mobile and tablet hero background with wall3.gif - Show from smallest screens to tablets (up to 1024px) */
@media (max-width: 1024px) {
    .hero {
        background-image: url('../images/wall3.gif') !important;
        background-color: transparent !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        image-rendering: auto !important;
        -ms-interpolation-mode: bicubic !important;
        will-change: background-image !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    .hero::before {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 0 !important;
    }
    
    .hero::after {
        display: none !important;
    }
}

/* Desktop: wall.gif (1025px and above) */
@media (min-width: 1025px) {
    .hero {
        background-image: url('../images/wall.gif') !important;
        background-attachment: fixed !important;
    }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #fff;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.3px;
    text-shadow: 
        0 0 2px rgba(0, 0, 0, 0.8),
        0 0 4px rgba(0, 0, 0, 0.6),
        0 0 8px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 
        0 0 2px rgba(0, 0, 0, 0.7),
        0 0 4px rgba(0, 0, 0, 0.5),
        0 0 6px rgba(0, 0, 0, 0.3),
        0 2px 3px rgba(0, 0, 0, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.25);
}

.hero-subtitle strong {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin: 25px auto 0;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 14px;
    text-shadow: none;
}

/* Domain Search */
.domain-search {
    background: var(--bg-lighter);
    padding: 25px 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-top: 50px;
    width: calc(100% + 160px);
    max-width: calc(100% + 160px);
    margin-left: -80px;
    margin-right: -80px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.domain-search-header {
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.domain-search-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    display: inline-block;
}

.domain-search-header h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-radius: 1px;
}

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

.domain-search-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.domain-search-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.domain-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 100%;
}

.domain-input-prefix {
    padding: 0 12px;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    background: transparent;
    color: var(--text-dark);
}

.domain-input {
    flex: 1;
    height: 48px;
    padding: 0 12px;
    border: none;
    border-left: 0.5px solid rgba(0, 0, 0, 0.12);
    border-right: 0.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    font-size: 15px;
    transition: var(--transition);
    background: transparent;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}

.domain-extension-select {
    height: 48px;
    padding: 0 12px;
    border: none;
    border-right: 0.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    min-width: 130px;
}

.domain-extension-select:focus {
    outline: none;
}

.domain-extension-select option {
    padding: 10px;
    background: var(--bg-white);
    color: var(--text-dark);
}

.domain-input::placeholder {
    color: var(--text-dark);
    opacity: 0.7;
}

.domain-input:focus {
    outline: none;
    border-left-color: rgba(0, 0, 0, 0.25);
    border-right-color: rgba(0, 0, 0, 0.25);
    box-shadow: none;
}

.domain-input-wrapper:focus-within {
    border-color: rgba(0, 0, 0, 0.25);
}

.domain-search-btn {
    padding: 0 24px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hidden-xs {
    display: inline;
}

@media (max-width: 768px) {
    .hidden-xs {
        display: none;
    }
}

.domain-search-btn i {
    font-size: 16px;
}

.domain-search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.domain-search-btn:active {
    transform: translateY(0);
}

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

.extension-label {
    color: var(--text-light);
    font-size: 14px;
}

.domain-ext {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.domain-ext:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

/* Domain Extensions Dropdown - Hetzner Style */
.domain-extensions-dropdown {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.domain-extensions-toggle {
    width: 100%;
    padding: 12px 20px;
    background: var(--bg-lighter);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.domain-extensions-toggle:hover {
    background: var(--bg-light);
    border-color: var(--border-color);
}

.domain-extensions-toggle i {
    transition: transform 0.3s ease;
}

.domain-extensions-toggle.active i {
    transform: rotate(180deg);
}

.domain-extensions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.domain-extensions-content.active {
    max-height: 500px;
    padding: 20px;
}

.extensions-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: block;
}

.extensions-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin: 0;
}

@media (max-width: 768px) {
    .extensions-checkboxes {
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
        gap: 6px;
    }
    
    .extension-checkbox {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .extensions-actions {
        flex-direction: row;
        gap: 8px;
    }
    
    .btn-select-all,
    .btn-deselect-all {
        flex: 1;
        padding: 8px 12px;
        font-size: 12px;
    }
}

.extension-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    user-select: none;
    padding: 8px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.extension-checkbox:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.extension-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
}

.extension-checkbox input[type="checkbox"] + span {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.extension-checkbox input[type="checkbox"] + span::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    background: var(--bg-white);
    transition: var(--transition);
    flex-shrink: 0;
}

.extension-checkbox input[type="checkbox"]:checked + span::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L4.5 8.5 2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.extension-checkbox input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.extension-checkbox:has(input:checked) {
    background: rgba(213, 12, 45, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(213, 12, 45, 0.1);
}

.extensions-actions {
    display: none;
}

.btn-select-all,
.btn-deselect-all {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
}

.btn-select-all:hover,
.btn-deselect-all:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.domain-results {
    margin-top: 30px;
    display: none;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domain-result-item {
    background: var(--bg-white);
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.domain-result-item.available {
    border-color: rgba(40, 167, 69, 0.2);
    background: var(--bg-white);
}

.domain-result-item.unavailable {
    border-color: var(--border-color);
    opacity: 0.7;
}

.domain-result-item.available:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.domain-result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.domain-name-large {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.1px;
    line-height: 1.4;
}

.domain-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.domain-price-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Domain Price Display in Search Results */
.domain-price-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.domain-price-old-inline {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    display: inline-block;
    opacity: 0.6;
}

.domain-price-new-inline {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    line-height: 1.2;
}

.domain-price-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(40, 167, 69, 0.25);
    letter-spacing: 0.2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.domain-price-discount-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.domain-result-item:hover .domain-price-discount-badge::after {
    left: 100%;
}

.domain-result-item:hover .domain-price-discount-badge {
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.domain-price-period {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 400;
    display: inline-block;
    margin-left: 3px;
    letter-spacing: 0.1px;
    opacity: 0.8;
}

.domain-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-buy-now {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 5px;
}

.domain-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.domain-loading i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}


.domain-result-message {
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 10px;
}

.domain-result-message.loading {
    background: var(--bg-light);
    color: var(--text-dark);
}

.domain-result-message.error {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--danger-color);
}

.badge-success,
.badge-danger {
    padding: 3px 9px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-success i {
    font-size: 11px;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-danger i {
    font-size: 14px;
}

.domain-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    min-width: 300px;
    border-left: 4px solid var(--success-color);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--success-color);
}

.notification-warning {
    border-left-color: #ffc107;
}

.notification-error {
    border-left-color: var(--danger-color);
}

.notification i {
    font-size: 20px;
}

.notification-success i {
    color: var(--success-color);
}

.notification-warning i {
    color: #ffc107;
}

.notification-error i {
    color: var(--danger-color);
}

.notification span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Features Section - Ferah Beyaz */
.features {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: visible;
    margin-top: 0;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    text-transform: none;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 2px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
    max-width: 750px;
    margin: 30px auto 0;
    letter-spacing: 0.1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 50px 35px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px);
    background: var(--bg-light);
    border-color: var(--border-color);
}

.feature-icon i {
    font-size: 28px;
    color: #666;
    display: inline-block;
    width: auto;
    height: auto;
    text-align: center;
    line-height: 1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: #666;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Packages Section - Ferah Gri */
.packages {
    padding: 120px 0 100px;
    background: var(--bg-lighter);
    background: var(--bg-white);
    position: relative;
    overflow: visible;
    touch-action: pan-y;
}

.packages-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    z-index: 0;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 40px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    z-index: 1;
}

/* Hide scrollbar for Hosting Plans section */
.packages .packages-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.packages-grid::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.packages-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.packages-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Slider snap points for package cards */
.packages .packages-grid .package-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.package-card {
    background: var(--bg-white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14), 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    z-index: 1;
    pointer-events: auto;
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 800;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 12px rgba(213, 0, 0, 0.4);
    white-space: nowrap;
}

/* Make package card content non-clickable, only buttons are clickable */
.package-card-content {
    pointer-events: none;
}

.package-card .btn,
.package-card a.btn,
.package-footer .btn,
.package-footer a.btn {
    pointer-events: auto;
    cursor: pointer;
}

.package-card::before {
    display: none;
}

.package-card > * {
    position: relative;
    z-index: 1;
}

.package-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.04) translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    z-index: 10;
}

.package-card.featured {
    border: 2px solid var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
}

.package-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-price-wrapper {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 5px;
    margin-top: 8px;
}

.package-discount-badge {
    position: relative;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 5px 11px;
    border-radius: 18px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.35);
    flex-shrink: 0;
}

.package-discount-period {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
    line-height: 1.3;
}

.package-price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 400;
    text-align: center;
}

.package-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 20px;
}

.package-header {
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.package-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.package-subtitle {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0;
}

.package-price-section {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.package-price-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.package-price-main {
    font-size: 42px;
    line-height: 1;
}

.package-price-decimal {
    font-size: 28px;
    line-height: 1;
    margin-top: 2px;
}

.package-price-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 2px;
    margin-top: 8px;
}

.package-price-hourly {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 400;
}

.package-price-vat {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
    text-transform: lowercase;
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    margin-bottom: 0;
    text-align: left;
}

/* Domain pricing features styling */
.domain-price-item .package-features {
    margin-bottom: 20px;
    text-align: left;
}

.package-features li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    border-bottom: 1px solid var(--border-light);
}

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

.package-features li i {
    color: var(--primary-color);
    font-size: 10px;
    width: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Domain pricing features list items */
.domain-price-item .package-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.domain-price-item .package-features li:last-child {
    border-bottom: none;
}

.domain-price-item .package-features li i {
    color: var(--primary-color);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
    margin-top: 0;
}

.package-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: auto;
}

.package-setup-fee {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-setup-fee-label {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.package-setup-fee-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.package-setup-fee-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 11px;
}

.package-setup-fee-new {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
}

.package-domain-info {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-domain-info-label {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.package-domain-info-price {
    color: var(--text-dark);
    font-weight: 500;
}

.package-domain-info-period {
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.loading-packages {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.loading-packages i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Domain Pricing */
.domain-pricing {
    padding: 120px 0 100px;
    background: var(--bg-lighter);
    position: relative;
    overflow: visible;
    touch-action: pan-y;
}

.domain-pricing .packages-grid,
#domainPricingTable.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 40px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 1;
}

.domain-pricing .packages-grid::-webkit-scrollbar,
#domainPricingTable.packages-grid::-webkit-scrollbar {
    height: 6px;
}

.domain-pricing .packages-grid::-webkit-scrollbar-track,
#domainPricingTable.packages-grid::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.domain-pricing .packages-grid::-webkit-scrollbar-thumb,
#domainPricingTable.packages-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.domain-pricing .packages-grid::-webkit-scrollbar-thumb:hover,
#domainPricingTable.packages-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.domain-price-item {
    background: var(--bg-white);
    padding: 32px 26px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14), 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    z-index: 1;
    pointer-events: auto;
}

.domain-price-item:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.04) translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    z-index: 10;
}

.domain-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.domain-price {
    font-size: 34px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 75px;
    justify-content: center;
}

.domain-price small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.domain-price-old {
    font-size: 20px;
    font-weight: 700;
    color: #999;
    text-decoration: line-through;
    display: block;
    opacity: 0.85;
    position: relative;
    margin-bottom: 6px;
}

.domain-price-old::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #bbb;
    transform: translateY(-50%);
}

.domain-price-new {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 6px;
}

.domain-price-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.domain-price-item .btn {
    margin-top: 5px;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.domain-price-item:hover .btn {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Discount label styling */
.domain-price-item div[style*="1st year discount"] {
    font-size: 10px !important;
    color: #666 !important;
    margin-top: 6px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
}

/* Better price display layout */
.domain-price {
    position: relative;
}

.domain-price-old + .domain-price-new {
    margin-top: 6px;
}

/* Enhanced discount badge with shimmer animation */
.domain-price-discount {
    position: relative;
    overflow: hidden;
}

.domain-price-discount::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.domain-price-item:hover .domain-price-discount::after {
    left: 100%;
}

.domain-price-item:hover .domain-price-discount {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.5), 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Price container with better spacing */
.domain-price-item {
    align-items: center;
}

.domain-price-item > * {
    width: 100%;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.service-card:hover .service-icon {
    background: var(--bg-light);
    border-color: var(--border-color);
    transform: translateY(-3px);
}

.service-icon i {
    font-size: 28px;
    color: #666;
    display: inline-block;
    width: auto;
    height: auto;
    text-align: center;
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: #666;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 20px;
}

/* Infrastructure Section */
.infrastructure {
    padding: 80px 0;
    background: var(--bg-white);
}

.infrastructure-content {
    max-width: 1000px;
    margin: 0 auto;
}

.infrastructure-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
}

.infrastructure-text p {
    margin-bottom: 20px;
}

.infrastructure-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.infra-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.infra-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.infra-feature i {
    font-size: 40px;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.infra-feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.infra-feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* Policies Section */
.policies {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.policy-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.policy-card i,
.policy-card .policy-icon i {
    font-size: 48px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.policy-icon {
    margin-bottom: 20px;
}

.policy-icon i {
    font-size: 48px;
    color: var(--bg-dark);
}

.policy-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.policy-link:hover {
    color: var(--primary-dark);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--bg-dark);
    color: #fff;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.stats-image {
    text-align: center;
}

.stats-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-icon i {
    color: var(--secondary-color);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 1;
    color: #fff;
}

.stat-sublabel {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section - Ferah Beyaz */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.contact-item:hover .contact-icon {
    background: var(--bg-light);
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.contact-icon i {
    font-size: 22px;
    color: #666;
    display: inline-block;
    width: auto;
    height: auto;
    text-align: center;
    line-height: 1;
    transition: var(--transition);
}

.contact-item:hover .contact-icon i {
    color: #666;
}

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-dark);
}

.contact-details a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-lighter);
    padding: 45px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.08);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo img {
    max-height: 200px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-client-area-item {
        display: block !important; /* Show li on mobile/tablet */
    }
    
    .nav-client-area {
        display: flex !important; /* Show on mobile/tablet */
        margin-left: 0 !important;
        margin-top: 8px;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 8px 16px !important;
        border-radius: 6px !important;
        font-size: 13px !important;
    }
    
    .nav-client-area i {
        font-size: 11px !important;
        margin-right: 4px !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        background-image: url('../images/wall3.gif') !important;
        background: #a0a0a0 !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 500px;
        padding: 80px 0;
        image-rendering: auto !important;
        -ms-interpolation-mode: bicubic !important;
        will-change: background-image !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 28px;
        color: #ffffff !important;
        text-shadow: 
            0 0 2px rgba(0, 0, 0, 0.8),
            0 0 4px rgba(0, 0, 0, 0.6),
            0 0 6px rgba(0, 0, 0, 0.4),
            0 2px 3px rgba(0, 0, 0, 0.5),
            0 3px 6px rgba(0, 0, 0, 0.3);
        -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 14px;
        color: #ffffff !important;
        text-shadow: 
            0 0 2px rgba(0, 0, 0, 0.7),
            0 0 3px rgba(0, 0, 0, 0.5),
            0 0 5px rgba(0, 0, 0, 0.3),
            0 1px 2px rgba(0, 0, 0, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.3);
        margin-top: 16px;
        -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.25);
    }

    .hero-features-list {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        max-width: 100%;
    }

    .hero-feature-item {
        font-size: 14px;
    }

    .domain-search {
        padding: 35px 50px;
    }
    
    .domain-search-header h2 {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 0.3px;
        margin-bottom: 18px;
        color: #000000;
    }
    
    .domain-search-header h2::after {
        width: 50px;
        height: 2px;
        bottom: -5px;
        background: linear-gradient(90deg, transparent, #000000, transparent);
    }
    
    .domain-search {
        padding: 20px 10px;
    }
    
    .domain-search-header {
        margin-bottom: 18px;
    }
    
    .domain-search-box {
        padding: 0 20px;
        margin-bottom: 18px;
    }
    
    .domain-input-wrapper {
        height: 44px;
        flex-wrap: nowrap;
    }
    
    .domain-input-prefix {
        padding: 0 12px;
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .domain-input {
        flex: 1;
        min-width: 0;
        height: 44px;
        font-size: 14px;
        padding: 0 12px;
    }
    
    .domain-extension-select {
        height: 44px;
        padding: 0 12px;
        padding-right: 30px;
        font-size: 13px;
        min-width: 120px;
        flex-shrink: 0;
    }

    .domain-search-btn {
        height: 44px;
        padding: 0;
        min-width: 44px;
        flex-shrink: 0;
    }
    
    .domain-search-btn i {
        font-size: 15px;
    }
    
    .domain-extensions-dropdown {
        padding: 0 10px;
    }
    
    .domain-results {
        padding: 0 10px;
    }
    
    .domain-result-item {
        padding: 10px 14px;
        border-radius: 5px;
        margin-bottom: 8px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }
    
    .domain-name-large {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.35;
    }
    
    .domain-price-display {
        gap: 5px;
        margin-top: 3px;
    }
    
    .domain-price-old-inline {
        font-size: 11px;
    }
    
    .domain-price-new-inline {
        font-size: 15px;
        font-weight: 600;
    }
    
    .domain-price-discount-badge {
        padding: 2px 6px;
        border-radius: 9px;
        font-size: 9px;
        font-weight: 500;
    }
    
    .domain-price-period {
        font-size: 9px;
        margin-left: 2px;
    }
    
    .domain-actions {
        gap: 7px;
    }
    
    .btn-buy-now {
        padding: 6px 14px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 4px;
    }
    
    .domain-result-item.available:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        border-color: rgba(40, 167, 69, 0.25);
    }
    
    .domain-result-item:hover .domain-price-discount-badge {
        transform: none;
        box-shadow: 0 1px 3px rgba(40, 167, 69, 0.2);
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tablet: Slider for Hosting Plans and Domain Pricing */
    .packages {
        position: relative;
    }
    
    .packages::before {
        display: none;
    }
    
    .packages::after {
        display: none;
    }
    
    .domain-pricing {
        position: relative;
    }
    
    .domain-pricing::before {
        display: none;
    }
    
    .domain-pricing::after {
        display: none;
    }
    
    @keyframes slideArrowLeft {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.65;
        }
        50% {
            transform: translateY(-50%) translateX(-6px);
            opacity: 0.9;
        }
    }
    
    @keyframes slideArrowRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.65;
        }
        50% {
            transform: translateY(-50%) translateX(6px);
            opacity: 0.9;
        }
    }
    
    .packages-grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 18px;
        margin-left: -18px;
        margin-right: -18px;
        width: calc(100% + 36px);
        scroll-padding: 0 18px;
        scroll-snap-stop: always;
        will-change: scroll-position;
        touch-action: pan-x pan-y;
        overscroll-behavior-x: none;
    }
    
    .packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .packages-grid .package-card {
        flex: 0 0 calc(75% - 18px);
        max-width: calc(75% - 18px);
        min-width: calc(75% - 18px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        scroll-margin: 0 18px;
    }
    
    .packages-grid .package-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .domain-pricing .packages-grid,
    #domainPricingTable.packages-grid {
        gap: 18px;
        padding: 0 18px;
        margin-left: -18px;
        margin-right: -18px;
        width: calc(100% + 36px);
        scroll-padding: 0 18px;
        scroll-snap-stop: always;
        will-change: scroll-position;
        touch-action: pan-x pan-y;
        overscroll-behavior-x: none;
    }
    
    .domain-pricing .packages-grid::-webkit-scrollbar,
    #domainPricingTable.packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .domain-pricing .packages-grid .package-card,
    .domain-pricing .packages-grid .domain-price-item,
    #domainPricingTable.packages-grid .package-card,
    #domainPricingTable.packages-grid .domain-price-item {
        flex: 0 0 calc(75% - 18px);
        max-width: calc(75% - 18px);
        min-width: calc(75% - 18px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        scroll-margin: 0 18px;
    }
    
    .domain-pricing .packages-grid .package-card:hover,
    #domainPricingTable.packages-grid .package-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .domain-pricing .packages-grid .domain-price-item:hover,
    #domainPricingTable.packages-grid .domain-price-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .domain-pricing .packages-grid .domain-price-item:hover .btn,
    #domainPricingTable.packages-grid .domain-price-item:hover .btn {
        background: var(--primary-color);
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .domain-pricing .packages-grid .domain-price-item:hover .domain-price-discount,
    #domainPricingTable.packages-grid .domain-price-item:hover .domain-price-discount {
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .package-card-content {
        padding: 25px 20px;
    }
    
    .package-price {
        font-size: 36px;
    }
    
    .package-price-main {
        font-size: 36px;
    }
    
    .package-price-decimal {
        font-size: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-col h4 {
        text-align: left;
    }
    
    .footer-col ul {
        text-align: left;
    }
    
    /* Support column with logo - center the logo */
    .footer-col .footer-logo {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-logo {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-logo img {
        max-height: 180px;
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: flex-start;
    }

    .top-bar {
        padding: 3px 0;
        background: var(--bg-dark) !important;
        color: #fff !important;
        font-size: 10px !important;
    }
    
    .top-bar-content {
        gap: 4px;
    }
    
    .top-bar-left a,
    .top-bar-right a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 9px !important;
    }
    
    .top-bar-left a:hover,
    .top-bar-right a:hover {
        color: #fff !important;
    }
    
    .top-bar-left a i,
    .top-bar-right a i {
        font-size: 9px !important;
    }
    
    .language-btn,
    .currency-btn {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 2px 4px !important;
        font-size: 9px !important;
        gap: 2px !important;
        border-radius: 3px !important;
    }
    
    .language-btn:hover,
    .currency-btn:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #fff !important;
    }
    
    .language-btn i,
    .currency-btn i {
        font-size: 9px !important;
    }
    
    .language-btn span,
    .currency-btn span {
        display: none;
    }
    
    .panel-link {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 2px 4px !important;
        font-size: 9px !important;
        gap: 2px !important;
        min-width: auto;
        border-radius: 3px !important;
    }
    
    .panel-link:hover {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
    }
    
    .panel-link i {
        font-size: 9px !important;
        margin-right: 0 !important;
        width: 9px;
        height: 9px;
    }
    
    .panel-link span {
        display: none;
    }
    
    .top-bar-right {
        gap: 4px;
        flex-shrink: 0;
    }
    
    .top-bar-left {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .top-bar-left a {
        font-size: 9px !important;
        gap: 2px;
    }
    
    .top-bar-left a i {
        font-size: 9px !important;
        flex-shrink: 0;
    }
    
    /* Hide email text on very small screens, show only icon */
    @media (max-width: 360px) {
        .top-bar-left a {
            font-size: 0 !important;
        }
        
        .top-bar-left a i {
            font-size: 10px !important;
        }
    }
    
    /* Ensure dropdowns are visible and clickable on mobile */
    .top-bar {
        z-index: 10002 !important;
    }
    
    .language-selector,
    .currency-selector {
        z-index: 10003 !important;
        position: relative !important;
    }
    
    .language-btn,
    .currency-btn {
        z-index: 10003 !important;
        position: relative !important;
    }
    
    .language-dropdown,
    .currency-dropdown {
        z-index: 10005 !important;
        position: absolute !important;
        top: calc(100% + 4px) !important;
        right: 0 !important;
        left: auto !important;
        width: auto !important;
        min-width: 140px !important;
        max-width: 200px !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    }
    
    .language-dropdown.show,
    .currency-dropdown.show {
        display: block !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        z-index: 10006 !important;
    }
    
    /* Make dropdown options touch-friendly on mobile */
    .language-option,
    .currency-option {
        padding: 12px 16px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        font-size: 13px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        cursor: pointer !important;
        color: #1a1a1a !important;
    }
    
    .language-option:hover,
    .currency-option:hover {
        background: var(--bg-lighter) !important;
        color: var(--primary-color) !important;
    }
    
    .language-option.active,
    .currency-option.active {
        background: var(--bg-lighter) !important;
        color: var(--primary-color) !important;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-image {
        order: 2;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        order: 1;
    }

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

    .currency-dropdown {
        right: auto;
        left: 0;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .packages {
        padding: 60px 0;
    }

    .package-card {
        padding: 35px 25px;
    }

    .package-name {
        font-size: 22px;
    }

    .package-price {
        font-size: 42px;
    }
    
    .logo-text {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .packages-background {
        display: none;
    }

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

    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header h2::after {
        width: 50px;
        height: 3px;
        bottom: -10px;
    }
    
    .section-header p {
        font-size: 18px;
        margin-top: 25px;
    }
    
    .packages-grid {
        gap: 25px;
        margin-top: 40px;
    }
    
    .domain-pricing .packages-grid,
    #domainPricingTable.packages-grid {
        gap: 25px;
        margin-top: 40px;
    }
    
    .package-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .domain-pricing {
        padding: 80px 0 60px;
        overflow: visible;
    }
    
    .domain-pricing .packages-grid,
    #domainPricingTable.packages-grid {
        padding: 15px 40px;
        overflow-y: visible;
    }
    
    .domain-price-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .domain-price-item:hover .btn {
        background: var(--primary-color);
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .domain-price-item:hover .domain-price-discount {
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .domain-search {
        padding: 30px 15px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .domain-search-box {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .domain-input-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .domain-search-header {
        padding: 0 10px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .domain-search-header h2 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.3px;
        margin-bottom: 15px;
        color: #000000;
    }
    
    .domain-search-header h2::after {
        width: 45px;
        height: 2px;
        bottom: -4px;
        background: linear-gradient(90deg, transparent, #000000, transparent);
    }
    
    .domain-search {
        padding: 18px 10px;
    }
    
    .domain-search-header {
        margin-bottom: 15px;
    }
    
    .domain-search-box {
        padding: 0 5px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .domain-input-wrapper {
        flex-direction: row;
        height: 42px;
        flex-wrap: nowrap;
        border-radius: 6px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }
    
    .domain-input-prefix {
        padding: 0 8px;
        font-size: 12px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .domain-input {
        flex: 1;
        min-width: 0;
        height: 42px;
        padding: 0 8px;
        font-size: 13px;
        width: 0;
    }
    
    .domain-extension-select {
        height: 42px;
        padding: 0 8px;
        padding-right: 26px;
        font-size: 12px;
        min-width: 85px;
        max-width: 100px;
        flex-shrink: 0;
        background-position: right 6px center;
        background-size: 10px;
    }
    
    .domain-search-btn {
        height: 42px;
        padding: 0;
        min-width: 42px;
        max-width: 42px;
        flex-shrink: 0;
    }
    
    .domain-search-btn i {
        font-size: 13px;
    }
    
    .domain-results {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .domain-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 8px;
        margin-bottom: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    }
    
    .domain-result-info {
        gap: 6px;
        width: 100%;
    }
    
    .domain-actions {
        width: 100%;
        margin-top: 0;
    }
    
    .btn-buy-now {
        width: 100%;
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .domain-name-large {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .domain-status {
        gap: 6px;
        margin-bottom: 4px;
    }
    
    .domain-price-display {
        gap: 6px;
        margin-top: 4px;
        width: 100%;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .domain-price-old-inline {
        font-size: 12px;
    }
    
    .domain-price-new-inline {
        font-size: 18px;
    }
    
    .domain-price-discount-badge {
        font-size: 9px;
        padding: 2px 7px;
    }
    
    .domain-price-period {
        font-size: 10px;
        display: block;
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
    }
    
    .badge-success {
        padding: 3px 8px;
        font-size: 10px;
    }

    .section-header p {
        font-size: 16px;
    }
    
    .domain-pricing-table {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .domain-pricing .packages-grid,
    #domainPricingTable.packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .domain-price-item {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .domain-name {
        font-size: 24px;
    }
    
    .domain-price {
        font-size: 28px;
        gap: 6px;
    }
    
    .domain-price {
        min-height: 70px;
        gap: 8px;
    }
    
    .domain-price-old {
        font-size: 18px;
    }
    
    .domain-price-new {
        font-size: 30px;
    }
    
    .domain-price-discount {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    
    .domain-price-item .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-left: 20px !important;
        min-width: auto !important;
    }

    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-dropdown > a i {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
}


@media (max-width: 480px) {
    .hero {
        background-image: url('../images/wall3.gif') !important;
        background: #a0a0a0 !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        image-rendering: auto !important;
        -ms-interpolation-mode: bicubic !important;
        will-change: background-image !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 1;
    }
    
    .domain-search {
        padding: 25px 10px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        border-radius: 12px;
    }
    
    .domain-search-header {
        padding: 0 5px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .domain-search-box {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 15px;
        box-sizing: border-box;
    }
    
    .domain-input-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .domain-results {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .domain-result-item {
        padding: 8px 12px;
        border-radius: 4px;
        margin-bottom: 6px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        border: 1px solid var(--border-light);
    }
    
    .domain-name-large {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.3;
    }
    
    .domain-price-display {
        gap: 4px;
        margin-top: 2px;
    }
    
    .domain-price-old-inline {
        font-size: 10px;
    }
    
    .domain-price-new-inline {
        font-size: 14px;
        font-weight: 600;
    }
    
    .domain-price-discount-badge {
        padding: 1px 5px;
        border-radius: 8px;
        font-size: 9px;
        font-weight: 500;
    }
    
    .domain-price-period {
        font-size: 9px;
        margin-left: 2px;
    }
    
    .domain-actions {
        gap: 6px;
    }
    
    .btn-buy-now {
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 500;
        border-radius: 4px;
    }
    
    .domain-result-item.available:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        border-color: rgba(40, 167, 69, 0.25);
    }
    
    .domain-result-item:hover .domain-price-discount-badge {
        transform: none;
        box-shadow: 0 1px 3px rgba(40, 167, 69, 0.2);
    }
    
    .domain-search-header h2 {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;
        margin-bottom: 12px;
        color: #000000;
    }
    
    .domain-search-header h2::after {
        width: 40px;
        height: 1.5px;
        bottom: -3px;
        background: linear-gradient(90deg, transparent, #000000, transparent);
    }
    
    .domain-search {
        padding: 15px 10px;
    }
    
    .domain-search-header {
        margin-bottom: 12px;
    }
    
    .domain-input-wrapper {
        height: 40px;
    }
    
    .domain-input {
        height: 40px;
        font-size: 12px;
    }
    
    .domain-extension-select {
        height: 40px;
        font-size: 11px;
    }
    
    .domain-search-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }
    
    .domain-input-prefix {
        font-size: 11px;
    }
    
    .domain-input-wrapper {
        height: 46px;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
    }
    
    .domain-input-prefix {
        padding: 0 8px;
        font-size: 12px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .domain-input {
        flex: 1;
        min-width: 0;
        height: 46px;
        font-size: 12px;
        padding: 0 6px;
        width: 0;
    }
    
    .domain-extension-select {
        display: none;
    }
    
    .domain-search-btn {
        height: 46px;
        padding: 0;
        min-width: 46px;
        max-width: 46px;
        width: 46px;
        flex-shrink: 0;
        flex-grow: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
    }
    
    .domain-search-btn i {
        font-size: 16px;
    }
    
    .domain-input {
        border-right: none;
    }
    
    /* Mobile Slider for Hosting Plans and Domain Pricing */
    .packages {
        position: relative;
    }
    
    .packages {
        position: relative;
    }
    
    .packages::before {
        display: none;
    }
    
    .packages::after {
        display: none;
    }
    
    /* Slider arrows only visible on mobile (480px and below) */
    .slider-arrow-left,
    .slider-arrow-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        color: var(--primary-color);
        opacity: 0.85;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10;
        font-weight: 900;
        text-shadow: 0 2px 8px rgba(213, 0, 0, 0.3);
        user-select: none;
        -webkit-user-select: none;
        transition: opacity 0.2s ease;
    }
    
    .slider-arrow-left {
        left: 15px;
    }
    
    .slider-arrow-right {
        right: 15px;
    }
    
    .slider-arrow-left:active,
    .slider-arrow-right:active {
        opacity: 1;
    }
    
    .domain-pricing {
        position: relative;
    }
    
    .domain-pricing::before {
        display: none;
    }
    
    .domain-pricing::after {
        display: none;
    }
    
    @keyframes slideArrowLeft {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.7;
        }
        50% {
            transform: translateY(-50%) translateX(-8px);
            opacity: 0.95;
        }
    }
    
    @keyframes slideArrowRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.7;
        }
        50% {
            transform: translateY(-50%) translateX(8px);
            opacity: 0.95;
        }
    }
    
    .packages-grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 16px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        scroll-padding: 0 16px;
        touch-action: pan-x pan-y;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-snap-stop: always;
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }
    
    .packages {
        position: relative;
        touch-action: pan-x pan-y;
        overscroll-behavior-y: auto;
    }
    
    .packages-grid .package-card {
        touch-action: pan-x pan-y;
    }
    
    .packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .packages-grid .package-card {
        flex: 0 0 calc(90% - 16px);
        max-width: calc(90% - 16px);
        min-width: calc(90% - 16px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        scroll-margin: 0 16px;
        overflow-y: visible;
        touch-action: none;
    }
    
    .packages-grid .package-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .package-card-content {
        padding: 15px 12px;
    }
    
    .package-header {
        margin-bottom: 10px;
        margin-top: 10px;
        padding-bottom: 8px;
    }
    
    .package-name {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .package-price-section {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .package-features {
        margin-bottom: 10px;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .package-features li {
        padding: 4px 0;
        font-size: 11px;
    }
    
    .package-footer {
        padding-top: 10px;
    }
    
    .domain-pricing .packages-grid,
    #domainPricingTable.packages-grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 16px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        scroll-padding: 0 16px;
        touch-action: pan-x pan-y;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-snap-stop: always;
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }
    
    .domain-pricing {
        position: relative;
        touch-action: pan-x pan-y;
        overscroll-behavior-y: auto;
    }
    
    .domain-pricing .packages-grid::-webkit-scrollbar,
    #domainPricingTable.packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .domain-pricing .packages-grid .package-card,
    .domain-pricing .packages-grid .domain-price-item,
    #domainPricingTable.packages-grid .package-card,
    #domainPricingTable.packages-grid .domain-price-item {
        flex: 0 0 calc(90% - 16px);
        max-width: calc(90% - 16px);
        min-width: calc(90% - 16px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        scroll-margin: 0 16px;
        overflow-y: visible;
        touch-action: pan-x pan-y;
    }
    
    .domain-pricing .packages-grid .domain-price-item:hover,
    #domainPricingTable.packages-grid .domain-price-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--border-light);
        z-index: 1;
    }
    
    .domain-pricing .packages-grid .domain-price-item:hover .btn,
    #domainPricingTable.packages-grid .domain-price-item:hover .btn {
        background: var(--primary-color);
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .domain-pricing .packages-grid .domain-price-item:hover .domain-price-discount,
    #domainPricingTable.packages-grid .domain-price-item:hover .domain-price-discount {
        transform: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .package-card-content {
        padding: 15px 12px;
    }
    
    .package-price {
        font-size: 28px;
    }
    
    .package-price-main {
        font-size: 28px;
    }
    
    .package-price-decimal {
        font-size: 20px;
    }
    
    .domain-pricing-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .domain-pricing .packages-grid,
    #domainPricingTable.packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 3px;
        bottom: -8px;
    }
    
    .section-header p {
        font-size: 15px;
        margin-top: 18px;
    }
    
    .domain-price-item {
        padding: 15px 12px;
        gap: 10px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .domain-name {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .domain-price {
        font-size: 24px;
        min-height: 50px;
        gap: 6px;
    }
    
    .domain-price-new {
        font-size: 26px;
    }
    
    .domain-price-old {
        font-size: 14px;
    }
    
    .domain-price {
        min-height: 60px;
        gap: 6px;
    }
    
    .domain-price-old {
        font-size: 16px;
    }
    
    .domain-price-new {
        font-size: 26px;
    }
    
    .domain-price-discount {
        font-size: 11px;
        padding: 5px 12px;
        margin-top: 4px;
    }
    
    
    .domain-price-item div[style*="1st year discount"] {
        font-size: 10px !important;
        padding: 3px 10px !important;
    }
    
    .domain-price-item .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .domain-result-item {
        padding: 14px 16px;
        gap: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    }
    
    .domain-result-info {
        gap: 6px;
        width: 100%;
    }
    
    .domain-name-large {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .domain-price-display {
        gap: 6px;
        margin-top: 4px;
        width: 100%;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .domain-price-old-inline {
        font-size: 12px;
    }
    
    .domain-price-new-inline {
        font-size: 18px;
    }
    
    .domain-price-discount-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .domain-price-period {
        font-size: 9px;
        display: block;
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
    }
    
    .badge-success {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .btn-buy-now {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 500px;
        background-image: none !important;
        background: var(--bg-lighter) !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 1;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 24px;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 13px;
        color: #ffffff !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .hero-features-list {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .hero-feature-item {
        font-size: 13px;
    }

    .domain-search {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        text-align: center;
    }
    
    .footer-col ul {
        text-align: center;
    }
    
    .footer-logo {
        margin: 20px auto 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-logo img {
        max-height: 150px;
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ============================================
   PROFESSIONAL ENHANCEMENTS
   ============================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Professional Focus States (Accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Better Button States */
.btn,
.btn-primary,
.btn-outline,
button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before,
.btn-primary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* Professional Loading States */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--bg-light) 25%, var(--bg-lighter) 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

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

/* Professional Card Hover Effects */
.feature-card,
.service-card,
.help-category,
.contact-method,
.about-feature {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.feature-card:hover,
.service-card:hover,
.help-category:hover,
.contact-method:hover,
.about-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Professional Image Loading */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Better Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Professional Link States */
a {
    transition: color 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

/* Professional Form States */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

/* Professional Dropdown Animations */
.dropdown-menu,
.language-dropdown,
.currency-dropdown {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Professional Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Professional Selection */
::selection {
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}

/* Professional Backdrop Blur Support */
@supports (backdrop-filter: blur(10px)) {
    .navbar,
    .top-bar {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Hide slider arrows on desktop (above 1024px) */
@media (min-width: 1025px) {
    .slider-arrow-left,
    .slider-arrow-right {
        display: none !important;
    }
    
    .packages::before,
    .packages::after,
    .domain-pricing::before,
    .domain-pricing::after {
        display: none !important;
    }
}

/* Professional Container Animations */
.container {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Professional Section Transitions */
section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Navbar Scroll Effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* Professional Tooltip */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bg-dark);
    z-index: 1000;
    margin-bottom: -5px;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Professional Ripple Effect */
.btn,
.btn-primary,
.btn-outline,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Page Header Section */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

/* Back Link Section */
.back-link-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.back-link i {
    font-size: 14px;
}

/* Web Hosting Logos Section */
.web-hosting-logos {
    padding: 80px 0;
    background: var(--bg-white);
}

.hosting-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.hosting-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-width: 160px;
    min-height: 140px;
    pointer-events: none;
    user-select: none;
    cursor: default;
}

.hosting-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: var(--transition);
}

.hosting-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.hosting-logo-item:hover::before {
    opacity: 1;
}

.hosting-logo {
    max-width: 240px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.hosting-logo-item:hover {
    pointer-events: auto;
}

.hosting-logo-item:hover .hosting-logo {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Professional Hosting Icons */
.hosting-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.hosting-icon-svg {
    width: 72px;
    height: 72px;
    color: var(--text-dark);
    opacity: 0.75;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hosting-icon-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}

.hosting-logo-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(213, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.hosting-logo-item:hover .hosting-icon-svg {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(213, 0, 0, 0.2));
}

.hosting-logo-item:hover .hosting-icon-text {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hosting-logos-footer {
    text-align: center;
    margin-top: 40px;
}

.hosting-logos-footer .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hosting-logos-container {
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .hosting-logo-item {
        padding: 30px 35px;
    }
    
    .hosting-logo {
        max-width: 180px;
        max-height: 70px;
    }
    
    .hosting-icon-svg {
        width: 48px;
        height: 48px;
    }
    
    .hosting-icon-text {
        font-size: 12px;
    }
    
    .hosting-logos-footer .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hosting-logos-container {
        gap: 20px;
    }
    
    .hosting-logo-item {
        padding: 20px 25px;
        min-width: 120px;
        min-height: 110px;
    }
    
    .hosting-logo {
        max-width: 150px;
        max-height: 60px;
    }
    
    .hosting-icon-svg {
        width: 48px;
        height: 48px;
    }
    
    .hosting-icon-text {
        font-size: 10px;
        letter-spacing: 0.6px;
    }
}

/* Professional Print Styles */
@media print {
    .navbar,
    .top-bar,
    .footer,
    .btn,
    button {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}



