/* Illevante Custom Premium Styling (Inspired by reg.ru Rebranding) */

/* CSS Variables & Theme Configuration */
:root {
    --primary: #00c853; /* Vibrant green from reg.ru new branding */
    --primary-hover: #00e676;
    --primary-light: rgba(0, 200, 83, 0.1);
    --primary-glow: rgba(0, 200, 83, 0.35);
    
    --dark-bg: #090e14; /* Deep premium slate background */
    --dark-card: #121820; /* Card dark color */
    --dark-border: #1e2630;
    
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --light-border: #e2e8f0;
    
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --text-light-muted: #94a3b8;
    
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Language Toggling */
html.lang-ar, body.lang-ar {
    font-family: var(--font-ar);
}

html.lang-en, body.lang-en {
    font-family: var(--font-en);
}

/* Fast bilingual toggle styling */
body.lang-ar .txt-en,
body.lang-en .txt-ar {
    display: none !important;
}

body.lang-ar .txt-ar {
    display: inline-block;
}

body.lang-en .txt-en {
    display: inline-block;
}

/* Language labels on toggle button */
body.lang-ar .lang-label-ar,
body.lang-en .lang-label-en {
    display: inline-block;
}

body.lang-ar .lang-label-en,
body.lang-en .lang-label-ar {
    display: none;
}

/* Helper Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

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

.text-start {
    text-align: start;
}

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

.hidden {
    display: none !important;
}

/* Base interactive elements */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* Top Alert Banner */
.top-banner {
    background: linear-gradient(90deg, #090e14 0%, #162435 100%);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--dark-border);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-content strong {
    color: var(--primary);
    margin: 0 4px;
}

/* Header Navbar */
.main-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--light-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #009624 100%);
    color: var(--text-white);
    padding: 6px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px var(--primary-light);
}

.logo-text {
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-lang:hover {
    background-color: var(--light-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--text-dark);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-login:hover {
    background-color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-light);
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 90% 10%, rgba(0, 200, 83, 0.08) 0%, rgba(255,255,255,0) 50%),
                radial-gradient(circle at 10% 90%, rgba(0, 200, 83, 0.05) 0%, rgba(255,255,255,0) 50%);
    padding: 80px 0 60px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
    max-width: 800px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 48px;
}

/* Domain Search Box */
.domain-search-box {
    width: 100%;
    max-width: 780px;
    background-color: var(--light-card);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-border);
    margin-bottom: 32px;
}

#domain-search-form {
    display: flex;
    gap: 12px;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--light-bg);
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

#domain-input {
    flex: 1;
    border: none;
    background: none;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 1.05rem;
    outline: none;
    color: var(--text-dark);
    width: 100%;
}

.extension-dropdown {
    display: flex;
    align-items: center;
    border-inline-start: 1px solid var(--light-border);
    padding: 0 16px;
    background-color: var(--light-card);
}

#domain-ext {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.btn-search {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-search:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 16px var(--primary-light);
}

/* Simulated Domain Search Results Card */
.search-result-card {
    margin-top: 16px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background-color: var(--light-bg);
    border: 1px solid var(--light-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

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

.result-domain-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.result-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-inline-start: 12px;
}

.status-available {
    background-color: #d1fae5;
    color: #065f46;
}

.status-taken {
    background-color: #fee2e2;
    color: #991b1b;
}

.result-price-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.result-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-add-to-cart {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-add-to-cart:hover {
    background-color: var(--primary);
}

/* Domain Badges styling */
.domain-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 100px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge .ext {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.badge .price {
    font-size: 0.95rem;
    color: var(--primary);
}

/* Badges with tags */
.badge.hot { border-color: #ff9100; }
.badge.sale { border-color: var(--primary); }
.badge.new { border-color: #2979ff; }

/* Promo cards section */
.promo-section {
    padding: 40px 0 80px;
}

.promo-card {
    background-color: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.promo-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--light-bg);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--light-border);
    color: var(--text-muted);
}

/* Switch position for LTR */
html[dir="ltr"] .promo-badge {
    left: auto;
    right: 24px;
}

.promo-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.promo-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.promo-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    flex: 1;
}

.promo-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.promo-price strong {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.btn-card-action {
    display: block;
    text-align: center;
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: 1px solid var(--light-border);
}

.btn-card-action:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
}

/* Dark version of Promo Card */
.promo-card.dark {
    background-color: var(--dark-bg);
    border-color: var(--dark-border);
}

.promo-card.dark .promo-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.promo-card.dark .promo-card-desc {
    color: var(--text-light-muted);
}

.promo-card.dark .promo-price strong {
    color: var(--text-white);
}

.btn-card-action.btn-green {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.btn-card-action.btn-green:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px var(--primary-light);
}

/* Section Common Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
}

/* Interactive Services Tabs Section */
.services-tabbed-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 16px;
}

.tab-btn {
    padding: 12px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary);
    background-color: var(--primary-light);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

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

/* Hosting Plan Cards */
.plan-card {
    background-color: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.plan-price {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-price strong {
    font-size: 2rem;
    color: var(--text-dark);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-bg);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.btn-plan-buy {
    display: block;
    text-align: center;
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.btn-plan-buy:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
}

/* Featured Plan Card Styling */
.plan-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.plan-card.featured:hover {
    box-shadow: 0 12px 30px var(--primary-light);
}

.badge-featured {
    position: absolute;
    top: -15px;
    align-self: center;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-plan-buy.btn-green {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-plan-buy.btn-green:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px var(--primary-light);
}

/* Tab 2: Domains info layout */
.domains-tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.domain-info-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
}

.domain-info-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.domain-prices-table {
    background-color: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 16px 24px;
    border-bottom: 1px solid var(--light-border);
}

.table-header {
    background-color: var(--light-bg);
    font-weight: 700;
    color: var(--text-muted);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row strong {
    color: var(--text-dark);
}

.table-row span {
    color: var(--primary);
    font-weight: 700;
}

/* Tab 3: SSL / Security layout */
.ssl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.ssl-card {
    background-color: var(--light-card);
    border: 1px solid var(--light-border);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.ssl-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ssl-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.ssl-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* VPS Configurator Slider Section */
.vps-slider-section {
    padding: 80px 0;
    background-color: var(--light-card);
}

.vps-config-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    background: radial-gradient(circle at 100% 0%, rgba(0, 200, 83, 0.04) 0%, rgba(255,255,255,0) 40%);
    padding: 48px;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.slider-group {
    margin-bottom: 32px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.slider-label {
    font-weight: 700;
    color: var(--text-dark);
}

.slider-value {
    font-weight: 800;
    color: var(--primary);
}

/* Custom CSS Range Input Styling */
.vps-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--light-bg);
    outline: none;
    border: 1px solid var(--light-border);
}

.vps-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 200, 83, 0.4);
    transition: var(--transition);
}

.vps-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--primary-hover);
}

/* Live Price Card */
.vps-price-card {
    background-color: var(--dark-bg);
    color: var(--text-white);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.vps-price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.vps-card-header {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 16px;
}

.vps-spec-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

.spec-item strong {
    color: var(--text-white);
}

.vps-total-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 8px;
}

.price-amount strong {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
}

.price-amount .period {
    color: var(--text-light-muted);
}

.btn-vps-order {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
}

.btn-vps-order:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 16px var(--primary-light);
}

/* Why choose us Features section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--light-border);
}

.feature-box {
    background-color: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon-wrapper {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--dark-border);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-light-muted);
    font-weight: 700;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-card);
}

.faq-container {
    max-width: 800px;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--light-bg);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: start;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--light-card);
    border-top: 0px solid var(--light-border);
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    border-top-width: 1px;
}

.accordion-body p {
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer Section */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light-muted);
    padding: 80px 0 0;
    border-top: 1px solid var(--dark-border);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--dark-card);
    color: var(--text-light-muted);
    border-radius: 50%;
    border: 1px solid var(--dark-border);
}

.social-icons a:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a:hover {
    color: var(--text-white);
    padding-inline-start: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 30px 0;
}

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-partners {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pay-badge {
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Spinner Animation */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 200, 83, 0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .domains-tab-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .vps-config-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile menu collapsed */
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    #domain-search-form {
        flex-direction: column;
    }
    
    .btn-search {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
