/**
 * SabaHost Modern Homepage - 2025 Design
 * With Gradient Background & Animated Slider
 */

:root {
    /* Original SabaHost Professional Purple Gradient */
    --gradient-start: #6d0e80;
    --gradient-mid: #580869;
    --gradient-end: #160531;
    --accent-blue: #10b5de;
    --accent-green: #22c55e;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

/* ============================================
   HERO SECTION WITH GRADIENT
   ============================================ */
.hero-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(225deg, #160531 0%, #3b064f 38%, #580869 81%, #6d0e80 100%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-row {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    align-items: center;
}

.hero-row .col-lg-6 {
    text-align: right !important;
}

.hero-content-col,
.hero-content-col * {
    text-align: right !important;
}

/* ============================================
   HERO CONTENT
   ============================================ */
.hero-content {
    color: var(--white);
    text-align: right !important;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .hero-title,
.hero-content .hero-desc,
.hero-content .hero-badge-top {
    text-align: right !important;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.text-highlight {
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--gradient-start);
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--gradient-start);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    color: var(--accent-green);
}

/* Features Row */
.hero-features-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-features-row .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.hero-features-row .feature-item i {
    color: var(--accent-green);
}

/* Hero Trust Stats */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 12px;
    justify-content: flex-start;
}

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

.trust-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.trust-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ============================================
   HERO VISUAL - CLEAN SERVER ILLUSTRATION
   ============================================ */
.hero-visual {
    position: relative;
    height: 550px;
}

.hero-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 450px;
}

/* Server Rack */
.server-rack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rack-frame {
    width: 200px;
    padding: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.rack-server {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.15);
}

.rack-server:last-child {
    margin-bottom: 0;
}

.server-lights {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.server-lights .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.server-lights .light.green {
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e, 0 0 20px rgba(34, 197, 94, 0.4);
    animation: lightPulse 2s ease-in-out infinite;
}

.server-lights .light.blue {
    background: #10b5de;
    box-shadow: 0 0 12px #10b5de, 0 0 20px rgba(16, 181, 222, 0.4);
    animation: lightPulse 1.5s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.server-slots {
    display: flex;
    gap: 4px;
    flex: 1;
}

.server-slots span {
    flex: 1;
    height: 26px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.rack-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
    filter: blur(30px);
    z-index: -1;
}

/* Floating Clouds */
.float-cloud {
    position: absolute;
    filter: drop-shadow(0 10px 30px rgba(255,255,255,0.2));
}

.cloud-1 {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    animation: cloudFloat1 8s ease-in-out infinite;
}

.cloud-2 {
    top: 20px;
    right: -20px;
    width: 80px;
    animation: cloudFloat2 10s ease-in-out infinite;
}

.cloud-3 {
    top: 60px;
    left: -10px;
    width: 60px;
    animation: cloudFloat3 7s ease-in-out infinite;
}

@keyframes cloudFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

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

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

/* Data Stream */
.data-stream {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 80px;
}

.data-dot {
    width: 6px;
    height: 6px;
    background: #10b5de;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b5de, 0 0 25px rgba(16, 181, 222, 0.5);
    animation: dataStream 2s ease-in-out infinite;
}

.d2 { animation-delay: 0.4s; }
.d3 { animation-delay: 0.8s; }

@keyframes dataStream {
    0% { opacity: 0; transform: translateY(-20px); }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translateY(40px); }
}

/* Hero Cards */
.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255,255,255,0.98);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10;
}

.hc-1 {
    top: 5%;
    right: 0;
    animation: cardFloat 5s ease-in-out infinite;
}

.hc-2 {
    bottom: 30%;
    left: -10px;
    animation: cardFloat 6s ease-in-out infinite 0.5s;
}

.hc-3 {
    bottom: 8%;
    right: 10%;
    animation: cardFloat 7s ease-in-out infinite 1s;
}

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

.hc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 14px;
    color: var(--white);
    font-size: 22px;
}

.hc-icon.blue {
    background: linear-gradient(135deg, #10b5de, #0284c7);
}

.hc-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hc-content strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.hc-content span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    z-index: 3;
}

.float-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 12px;
    color: var(--white);
    font-size: 22px;
}

.float-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.float-icon.blue {
    background: linear-gradient(135deg, var(--accent-blue), #0284c7);
}

.float-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.float-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.float-1 {
    top: 10%;
    right: 0;
    animation: floatCard1 5s ease-in-out infinite;
}

.float-2 {
    bottom: 25%;
    left: 0;
    animation: floatCard2 6s ease-in-out infinite;
}

.float-3 {
    top: 60%;
    right: 5%;
    animation: floatCard3 4s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

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

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

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

/* ============================================
   CONSULTATION MODAL
   ============================================ */
.consult-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f3f4f6;
    transform: rotate(90deg);
}

.modal-visual {
    background: linear-gradient(135deg, var(--modal-bg-start, #e0f2fe) 0%, var(--modal-bg-end, #f0e6fa) 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-avatar {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--modal-primary, #a5118c), var(--modal-secondary, #6366f1));
    border-radius: 50%;
    color: var(--white);
    font-size: 60px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px var(--modal-shadow, rgba(165, 17, 140, 0.3));
}

.modal-avatar i {
    font-size: 70px;
}

.modal-avatar svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
    flex-shrink: 0;
}

.modal-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.modal-contact i {
    color: var(--modal-primary, var(--gradient-start));
}

.modal-form {
    padding: 50px 40px;
}

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-free {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--modal-primary, #10b5de), var(--modal-secondary, #00d4aa));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.modal-form input[type="text"],
.modal-form input[type="tel"],
.modal-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--modal-primary, var(--gradient-start));
}

.time-select {
    margin: 20px 0;
}

.time-select > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.time-opts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.time-opts label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
}

.time-opts input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--modal-primary, var(--gradient-start));
}

.form-btns {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.btn-cancel {
    flex: 1;
    padding: 16px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #f9fafb;
}

.btn-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--modal-primary, var(--gradient-start)), var(--modal-secondary, var(--gradient-mid)));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--modal-shadow, rgba(165, 17, 140, 0.3));
}

/* ============================================
   OTHER SECTIONS (keeping previous styles)
   ============================================ */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(165, 17, 140, 0.1);
    color: var(--gradient-start);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-modern {
    margin-bottom: 48px;
}

.section-header-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header-modern p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Domain Section */
.domain-modern {
    padding: 80px 0;
    background: var(--white);
}

.domain-card-modern {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 48px;
}

.domain-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.domain-header p {
    color: var(--text-muted);
}

.search-input-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: 14px;
    padding: 12px;
    border: 2px solid var(--border-color);
    margin-top: 24px;
    transition: all 0.3s;
}

.search-input-wrapper:focus-within {
    border-color: var(--gradient-start);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 16px;
    outline: none;
    direction: ltr;
    text-align: left;
}

.search-input-wrapper button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
    justify-content: center;
}

.search-input-wrapper button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.search-input-wrapper button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.search-input-wrapper button.loading .btn-text {
    display: none;
}

.search-input-wrapper button.loading i {
    display: none;
}

.search-input-wrapper button .btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.search-input-wrapper button.loading .btn-spinner {
    display: block;
}

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

/* Domain Results Modern */
.domain-results-modern {
    margin-top: 20px;
}

.domain-results-modern .d-flex {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    border: 2px solid var(--border-color);
    align-items: center;
    gap: 16px;
    animation: slideUp 0.3s ease;
}

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

.domain-results-modern .domain-status {
    flex: 1;
}

.domain-results-modern .domain-status p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.domain-results-modern .success-color p {
    color: var(--accent-green);
}

.domain-results-modern .pink-color p {
    color: #e11d48;
}

.domain-results-modern .price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.domain-results-modern .price p {
    margin: 0;
}

.domain-results-modern .domain-status-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.domain-results-modern .green-btn {
    background: var(--accent-green);
    color: white;
}

.domain-results-modern .green-btn:hover {
    background: #16a34a;
}

.domain-results-modern .pink-btn {
    background: #fce7f3;
    color: #be185d;
}

.domain-results-modern .pink-btn:hover {
    background: #fbcfe8;
}

.domain-prices-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.domain-price-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.domain-price-item:hover {
    border-color: var(--gradient-start);
    box-shadow: 0 4px 15px rgba(165, 17, 140, 0.1);
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-info .tld {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.price-info .price {
    font-size: 13px;
    color: var(--gradient-start);
    font-weight: 600;
}

.price-info .price small {
    font-weight: 400;
    color: var(--text-muted);
}

.view-all-domains {
    margin-right: auto;
    color: var(--gradient-start);
    font-weight: 600;
    text-decoration: none;
}

/* Services Bento */
.services-bento {
    padding: 100px 0;
    background: var(--bg-light);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.bento-large.gradient-card {
    background: linear-gradient(225deg, #160531 0%, #3b064f 38%, #580869 81%, #6d0e80 100%);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.bento-large.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.bento-large.gradient-card > * {
    position: relative;
    z-index: 1;
}

.bento-large.gradient-card h3,
.bento-large.gradient-card p,
.bento-large.gradient-card .card-link { color: var(--white); }

.bento-medium { grid-column: span 1; }
.bento-small { grid-column: span 1; }

.bento-wide {
    grid-column: span 4;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 36px;
    background: var(--white);
}

/* Icon Circles */
.card-icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(165, 17, 140, 0.1);
    color: var(--gradient-start);
    margin-bottom: 20px;
}

.card-icon-circle.small {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.card-icon-circle.blue {
    background: rgba(16, 181, 222, 0.1);
    color: var(--accent-blue);
}

.card-icon-circle.purple {
    background: rgba(107, 33, 168, 0.1);
    color: var(--gradient-end);
}

.card-icon-circle.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.card-icon-circle.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.card-icon-circle.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

/* Gradient card icon */
.gradient-card .card-icon-circle {
    background: rgba(255,255,255,0.2);
    color: white;
}

.bento-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.bento-card h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.bento-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; line-height: 1.7; }

/* Card Features */
.card-features { list-style: none; padding: 0; margin: 0 0 24px 0; }
.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.feature-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 11px;
}

.gradient-card .feature-check i { color: white; }

/* Card Footer */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

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

.card-price .price-label { font-size: 13px; opacity: 0.8; }
.card-price strong { font-size: 28px; font-weight: 700; }
.card-price .price-period { font-size: 12px; opacity: 0.7; }

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.card-btn:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

.card-link {
    color: var(--gradient-start);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.card-link:hover { gap: 10px; }

.mini-desc { font-size: 12px; color: var(--text-muted); margin: 4px 0 8px; line-height: 1.6; }
.mini-price { font-size: 13px; color: var(--text-muted); }

.stat-item { text-align: center; }
.stat-number { display: block; font-size: 36px; font-weight: 700; color: var(--gradient-start); }
.stat-label { font-size: 14px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 50px; background: var(--border-color); }

/* Pricing */
.pricing-modern { padding: 100px 0; background: var(--white); }

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 14px 28px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab-btn:hover { border-color: var(--gradient-start); }
.tab-btn.active { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid)); color: var(--white); }

.tab-btn .tab-icon {
    width: 22px;
    height: 22px;
    margin-left: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.tab-btn:hover .tab-icon { transform: scale(1.1); }
.tab-btn.active .tab-icon { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }

.pricing-grid { display: none; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-grid.active { display: grid; }

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    text-align: center;
}

.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.price-card.featured { border: 2px solid var(--gradient-start); }

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.price-card .card-header { text-align: center; margin-bottom: 28px; }
.plan-name { display: block; font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.plan-space { padding: 6px 16px; background: var(--bg-light); border-radius: 50px; font-size: 14px; color: var(--text-muted); }

.price-card .card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.price-card .card-price .amount { font-size: 40px; font-weight: 800; color: var(--text-dark); }
.price-card .card-price .period { font-size: 14px; color: var(--text-muted); }

.features-list { list-style: none; padding: 0; margin: 0 0 28px 0; }
.features-list li { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.features-list li:last-child { border-bottom: none; }
.features-list i { color: var(--accent-green); font-size: 12px; }

.btn-order {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-order:hover { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid)); color: var(--white); }
.btn-order.btn-primary-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
}

.pricing-footer { margin-top: 50px; }
.pricing-footer p { color: var(--text-muted); margin-bottom: 10px; }
.link-contact { color: var(--gradient-start); font-weight: 600; text-decoration: none; }

/* Testimonials */
.testimonials-modern { padding: 100px 0; background: var(--bg-light); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 70px; }

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
}

.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }

.quote-icon { color: var(--gradient-start); opacity: 0.3; margin-bottom: 18px; }
.testimonial-text { font-size: 15px; line-height: 1.9; color: var(--text-dark); margin-bottom: 28px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.author-info strong { display: block; font-weight: 600; color: var(--text-dark); }
.author-info span { font-size: 13px; color: var(--text-muted); }

.trust-section { text-align: center; }
.trust-title { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.trust-logos { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-bottom: 28px; }
.logo-item { opacity: 0.6; transition: all 0.3s; }
.logo-item:hover { opacity: 1; }
.view-all-customers { color: var(--gradient-start); font-weight: 600; text-decoration: none; }

/* FAQ Section */
.faq-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gradient-start);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.faq-item.active {
    border-color: var(--gradient-start);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: right;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.03);
}

.question-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.faq-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Why Us / Features Section */
.why-us-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12);
    border-color: var(--gradient-start);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.why-icon.uptime { background: linear-gradient(135deg, #10b981, #34d399); }
.why-icon.support { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.why-icon.speed { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.why-icon.security { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.why-icon.backup { background: linear-gradient(135deg, #ec4899, #f472b6); }
.why-icon.guarantee { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }

.why-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.why-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.why-stat {
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-number small {
    font-size: 14px;
    font-weight: 600;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.why-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.why-stats-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 25px 25px;
}

.why-stats-row .stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-stats-row .stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.why-stats-row .stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-stats-row {
        flex-wrap: wrap;
        gap: 30px;
    }
    .why-stats-row .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .why-stats-row {
        padding: 30px;
    }
    .why-stats-row .stat-value {
        font-size: 28px;
    }
}

/* Consultation Banner */
section.consult-banner {
    padding: 60px 0;
    background: linear-gradient(225deg, #160531 0%, #3b064f 38%, #580869 81%, #6d0e80 100%) !important;
    position: relative;
    overflow: hidden;
}

.consult-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(109, 14, 128, 0.4) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(88, 8, 105, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.consult-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.consult-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(109, 14, 128, 0.4), rgba(88, 8, 105, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consult-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.consult-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 400px;
}

.consult-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.consult-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.consult-btn.primary {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: #fff;
}

.consult-btn.primary .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.consult-btn.primary .btn-text small {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
}

.consult-btn.primary .btn-text strong {
    font-size: 15px;
    direction: ltr;
}

.consult-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.consult-btn.telegram {
    background: #0088cc;
    color: #fff;
}

.consult-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.consult-btn.primary:hover { background: linear-gradient(135deg, #db2777, #ec4899); }
.consult-btn.secondary:hover { background: rgba(255, 255, 255, 0.2); }
.consult-btn.telegram:hover { background: #0077b5; }

.consult-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.consult-banner .consult-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0 !important;
    font-size: 14px;
    background: transparent;
    padding: 0;
}

.consult-banner .consult-features .feature-item span {
    color: #e2e8f0 !important;
}

.consult-banner .consult-features .feature-item svg {
    color: #c084fc !important;
}

@media (max-width: 992px) {
    .consult-content {
        flex-direction: column;
        text-align: center;
    }
    .consult-info {
        flex-direction: column;
    }
    .consult-text p {
        max-width: 100%;
    }
    .consult-actions {
        justify-content: center;
    }
    .consult-features {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .consult-btn {
        width: 100%;
        justify-content: center;
    }
    .consult-features {
        flex-direction: column;
        align-items: center;
    }
}

/* CTA */
.cta-modern { padding: 100px 0; background: var(--white); }

.cta-card {
    background: linear-gradient(225deg, #160531 0%, #3b064f 38%, #580869 81%, #6d0e80 100%);
    border-radius: 24px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
    z-index: 0;
}

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

.cta-card {
    align-items: center;
    gap: 50px;
}

.cta-content { color: var(--white); }
.cta-content h2 { font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.cta-content p { font-size: 18px; opacity: 0.9; margin-bottom: 20px; }
.cta-features { display: flex; gap: 28px; }
.cta-features span { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.cta-features i { color: var(--accent-green); }

.cta-actions { display: flex; gap: 18px; }

.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--gradient-start);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary-gradient:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Responsive */
@media (max-width: 1200px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; flex-wrap: wrap; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 40px; }
    .hero-visual { height: 380px; margin-bottom: 40px; }
    .hero-illustration { transform: translate(-50%, -50%) scale(0.85); }
    .hero-card { display: none; }
    .cloud-2, .cloud-3 { display: none; }
    .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .cta-card { flex-direction: column; text-align: center; padding: 50px 36px; }
    .cta-features { flex-wrap: wrap; justify-content: center; }
    .modal-visual { display: none; }
}

@media (max-width: 768px) {
    .hero-modern { padding: 90px 0 50px; }
    .hero-title { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-features-row { gap: 12px; }
    .hero-features-row .feature-item { padding: 10px 14px; font-size: 13px; }
    .hero-trust { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .trust-divider { display: none; }
    .hero-visual { height: 300px; }
    .hero-illustration { transform: translate(-50%, -50%) scale(0.7); }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .bento-wide { flex-direction: column; gap: 30px; }
    .domain-card-modern { padding: 28px; }
    .pricing-tabs { flex-direction: column; align-items: center; }
    .trust-logos { gap: 28px; }
}

/* Trust Badges Section */
.trust-badges-modern {
    padding: 50px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}

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

.badges-title {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 100px;
    min-height: 100px;
}

.badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--gradient-start);
}

.badge-item img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.ssl-badge, .payment-badge {
    text-decoration: none;
}

.ssl-icon, .payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 8px;
}

.ssl-text, .payment-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.badges-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 576px) {
    .badges-grid {
        gap: 16px;
    }
    .badge-item {
        padding: 12px 16px;
        min-width: 80px;
        min-height: 80px;
    }
    .badge-item img {
        max-width: 60px;
        max-height: 60px;
    }
}

/* Menu spacing */
.main-menu > li {
    margin-left: 12px !important;
}

.main-menu > li > a {
    padding: 15px 16px !important;
}

/* ============================================
   BLOG SECTION - دانشنامه صباهاست
   ============================================ */
.blog-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    display: block;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

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

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(165, 17, 140, 0.1);
    color: var(--gradient-start);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.blog-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.blog-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--gradient-start);
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-date svg {
    opacity: 0.6;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gradient-start);
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--gradient-mid);
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(-4px);
}

.blog-footer {
    margin-top: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--gradient-start);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--gradient-start);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(165, 17, 140, 0.3);
}

.btn-view-all svg {
    transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
    transform: translateX(-4px);
}

/* Blog Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-modern {
        padding: 60px 0;
    }
}
