/**
 * WebinHost - Main Stylesheet
 * Custom High-Performance Modern CSS Design System
 * Light Mode Design System with Dark Header & Footer (as on webinhost.in)
 */

/* ==========================================================================
   1. CSS VARIABLES & THEME SETUP
   ========================================================================== */
:root {
    --primary: #fd9009;
    --primary-hover: #e07e05;
    --primary-light: rgba(253, 144, 9, 0.12);
    --secondary: #2563eb;
    --secondary-hover: #1d4ed8;
    --secondary-light: rgba(37, 99, 235, 0.1);
    
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.12);
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Background Colors */
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-dark: #070b14;
    --bg-light: #f1f5f9;
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-hover: #fd9009;
    
    /* Text Colors */
    --text-main: #334155;
    --text-muted: #64748b;
    --text-heading: #0f172a;
    --text-dark: #0f172a;
    --text-dark-muted: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 25px rgba(253, 144, 9, 0.2);
    --shadow-blue-glow: 0 0 30px rgba(37, 99, 235, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s ease;
}

/* ==========================================================================
   2. RESET & BASE TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.25;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ==========================================================================
   3. BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(253, 144, 9, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9e24 0%, #fd9009 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 144, 9, 0.5);
    color: #ffffff;
}

.btn-secondary {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
    background: #e2e8f0;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Currency Switcher Dropdown */
.currency-switcher-dropdown {
    position: relative;
    display: inline-block;
}

.currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.currency-btn:hover, .currency-switcher-dropdown.active .currency-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: #ffffff;
}

.currency-sym {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1;
}

.currency-code {
    font-weight: 700;
    font-size: 0.82rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.currency-chevron {
    font-size: 0.68rem;
    color: #94a3b8;
    margin-left: 2px;
    transition: transform 0.25s ease;
}

.currency-switcher-dropdown.active .currency-chevron {
    transform: rotate(180deg);
}

.currency-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 130px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.currency-switcher-dropdown.active .currency-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #1e293b;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.currency-option:hover {
    background: #fff8f0;
    color: var(--primary);
}

.currency-option.active {
    background: var(--primary);
    color: #ffffff;
}

.currency-option .curr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
}

.currency-option.active .curr-badge {
    color: #ffffff;
}

.badge-pill {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #ffffff;
    letter-spacing: 0.5px;
}

.badge-uptime {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.badge-uptime i {
    font-size: 0.5rem;
    color: #10b981;
}

/* ==========================================================================
   4. HEADER, PROMO & NAVIGATION (DARK MODE AS REQUESTED)
   ========================================================================== */
.top-promo-bar {
    background: linear-gradient(90deg, #ea580c 0%, #fd9009 50%, #ea580c 100%);
    padding: 6px 0;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-tag {
    background: #000000;
    color: #fef08a;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.coupon-code {
    background: rgba(0, 0, 0, 0.35);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
}

.promo-link {
    font-weight: 700;
    color: #ffffff;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.promo-link:hover {
    color: #fef08a;
}

.top-contact-bar {
    background-color: #05080e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.top-contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-left, .contact-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #94a3b8;
}

.contact-item i {
    color: var(--primary);
}

.contact-item:hover {
    color: #ffffff;
}

.quick-link {
    color: #94a3b8;
}

.quick-link.highlight {
    color: var(--primary);
    font-weight: 600;
}

.client-login-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.client-login-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.client-badge {
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.65rem;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
}

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

.social-icons-top a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.social-icons-top a:hover {
    color: var(--primary);
}

/* Main Sticky Navbar */
.main-header {
    background: #0a0e17;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background: rgba(10, 14, 23, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(253, 144, 9, 0.3);
}

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

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(253, 144, 9, 0.4);
}

.logo-text-box {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-name span {
    color: var(--primary);
}

.brand-sub {
    font-size: 0.68rem;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Desktop Navigation */
.desktop-nav {
    height: 100%;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.desktop-nav .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    border-radius: var(--radius-sm);
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--primary);
    background: rgba(253, 144, 9, 0.12);
}

.nav-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Sleek & Compact Light Theme */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 245px;
    min-width: 245px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 10px 10px;
    padding: 4px 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    max-height: 330px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Slim Scrollbar for Dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Hover bridge so cursor doesn't lose focus moving from nav link to dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.dropdown-menu.mega-menu {
    width: 250px;
    min-width: 250px;
}

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

.dropdown-item-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px;
    border-radius: 6px;
    transition: all 0.18s ease;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}

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

.dropdown-item-card:hover,
.dropdown-item-card.active {
    background: #fff8f0;
}

.dropdown-item-card .item-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    flex-shrink: 0;
    transition: all 0.18s ease;
}

.dropdown-item-card:hover .item-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(253, 144, 9, 0.3);
}

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

.dropdown-item-card .item-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.25;
    transition: color 0.18s ease;
}

.dropdown-item-card:hover .item-title {
    color: var(--primary);
}

.badge-pill {
    background: linear-gradient(135deg, #fd9009, #ea580c);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
    display: inline-block;
}

.dropdown-item-card .item-desc {
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 2px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 175px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.mobile-toggle-btn span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Off-canvas Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.drawer-close-btn {
    background: #f1f5f9;
    color: var(--text-heading);
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close-btn:hover {
    background: #e2e8f0;
    color: var(--danger);
}

.drawer-body {
    padding: 20px;
    background: #ffffff;
}

.mobile-nav-list li {
    margin-bottom: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 11px 14px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-heading);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-nav-link.highlight {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-heading);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-accordion-btn:hover,
.mobile-accordion.active .mobile-accordion-btn {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-accordion-panel {
    display: none;
    padding-left: 14px;
    margin-top: 4px;
}

.mobile-accordion.active .mobile-accordion-panel {
    display: block;
}

.mobile-accordion.active .mobile-accordion-btn i {
    transform: rotate(180deg);
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-sub-link i {
    color: var(--primary);
    font-size: 0.8rem;
}

.mobile-sub-link:hover, .mobile-sub-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Hide floating WhatsApp and chat buttons when mobile drawer or modals are open */
body.drawer-open .floating-whatsapp-btn,
body.drawer-open #backToTopBtn,
body.drawer-open #tawk-bubble-container,
body.drawer-open iframe[title*="chat"] {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.drawer-contact-info {
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-contact-btn, .drawer-client-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
}

.drawer-contact-btn {
    background: var(--bg-light);
    color: var(--text-heading);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.drawer-contact-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.drawer-client-btn {
    background: linear-gradient(135deg, #fd9009, #ea580c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(253, 144, 9, 0.35);
}

.section-padding {
    padding: 60px 0;
}

/* ==========================================================================
   5. HERO SECTION & DOMAIN SEARCH (LIGHT MODE)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 65px 0 45px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(253, 144, 9, 0.1);
    border: 1px solid rgba(253, 144, 9, 0.3);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-desc {
    font-size: 1.12rem;
    color: #475569;
    margin-bottom: 35px;
    max-width: 580px;
    line-height: 1.6;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Hero Right Visual Graphic & Interactive Animations */
.hero-visual {
    position: relative;
    text-align: center;
}

.hero-visual-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

/* Glowing concentric backdrop circle */
.hero-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(253, 144, 9, 0.12) 50%, rgba(248, 250, 252, 0) 75%);
    z-index: 1;
    pointer-events: none;
    animation: circlePulse 6s ease-in-out infinite alternate;
}

.hero-circle-bg::after {
    content: '';
    position: absolute;
    inset: -25px;
    border-radius: 50%;
    border: 2px dashed rgba(14, 165, 233, 0.25);
    animation: circleRotate 25s linear infinite;
}

@keyframes circlePulse {
    0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

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

/* Main Hero Image with Floating & Interactive Hover Zoom */
.hero-main-img {
    position: relative;
    z-index: 2;
    max-height: 490px;
    width: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.1));
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.45s ease;
    cursor: pointer;
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-visual-wrapper:hover .hero-main-img,
.hero-main-img:hover {
    transform: scale(1.07) translateY(-8px);
    filter: drop-shadow(0 25px 45px rgba(253, 144, 9, 0.25));
}

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

/* Floating Badges matching original site layout */
.hero-floating-badge {
    position: absolute;
    z-index: 3;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 10px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    min-width: 110px;
}

.hero-floating-badge:hover {
    transform: scale(1.06) translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.hero-floating-badge .badge-val {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0b0f19;
    font-family: var(--font-body);
    text-align: center;
    display: block;
}

.hero-floating-badge .badge-lbl {
    font-size: 0.78rem;
    color: #334155;
    font-weight: 600;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
}

/* Floating Positions matching exact original site visual screenshot */
.hero-badge-1 {
    top: 25%;
    left: 2%;
    animation: badgeFloat1 4s ease-in-out infinite alternate;
}

.hero-badge-2 {
    top: 36%;
    right: 2%;
    animation: badgeFloat2 4.5s ease-in-out infinite alternate;
}

.hero-badge-3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation: badgeFloat3 5s ease-in-out infinite alternate;
}

@keyframes badgeFloat1 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

@keyframes badgeFloat2 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(6px); }
}

@keyframes badgeFloat3 {
    0% { transform: translateX(-50%) translateY(0px); }
    100% { transform: translateX(-50%) translateY(-6px); }
}

@media (max-width: 991px) {
    .hero-circle-bg {
        width: 280px;
        height: 280px;
    }
    .hero-main-img {
        max-height: 360px;
    }
    .hero-floating-badge {
        padding: 8px 14px;
        min-width: 95px;
        border-radius: 12px;
    }
    .hero-floating-badge .badge-val {
        font-size: 1rem;
    }
    .hero-floating-badge .badge-lbl {
        font-size: 0.72rem;
    }
    .hero-badge-1 {
        top: 20%;
        left: 0;
    }
    .hero-badge-2 {
        top: 35%;
        right: 0;
    }
    .hero-badge-3 {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.server-visual-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.server-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(253, 144, 9, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.server-rack-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.server-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--success);
    font-weight: 700;
}

.server-status-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.server-node-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.server-node-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.node-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #0f172a;
}

.node-name i {
    color: var(--primary);
}

.node-metric {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0284c7;
}

/* Domain Search Bar Component */
.domain-search-section {
    position: relative;
    padding: 35px 0 45px;
    z-index: 10;
}

.domain-search-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.domain-search-header {
    text-align: center;
    margin-bottom: 22px;
}

.domain-search-header h2 {
    font-size: 1.85rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.domain-search-header p {
    color: #64748b;
    font-size: 0.98rem;
}

.domain-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 6px;
    transition: var(--transition);
}

.domain-input-group:focus-within {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(253, 144, 9, 0.2);
}

.domain-icon {
    padding: 0 16px;
    color: var(--primary);
    font-size: 1.2rem;
}

.domain-input {
    flex: 1;
    background: transparent;
    color: #0f172a;
    font-size: 1.05rem;
    padding: 12px 0;
}

.domain-input::placeholder {
    color: #94a3b8;
}

.domain-action-btns {
    display: flex;
    gap: 8px;
}

.domain-tld-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.tld-chip {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.tld-chip:hover {
    background: #fff7ed;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.tld-name {
    font-weight: 800;
    color: #0f172a;
}

.tld-price {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   6. PRICING CARDS & BILLING SWITCHER (LIGHT MODE)
   ========================================================================== */
.pricing-section {
    padding: 65px 0;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(253, 144, 9, 0.1);
    border: 1px solid rgba(253, 144, 9, 0.3);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.55;
}

/* Billing Toggle Switch */
.billing-switcher-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    text-align: center;
}

.billing-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.billing-label.active {
    color: #0f172a;
    font-weight: 700;
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

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

.slider-round {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #cbd5e1;
    border: 1px solid #94a3b8;
    border-radius: 34px;
    transition: var(--transition);
}

.slider-round:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

input:checked + .slider-round {
    background-color: #0f172a;
    border-color: var(--primary);
}

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

.discount-pill {
    background: #10b981;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(253, 144, 9, 0.12);
}

.pricing-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(253, 144, 9, 0.35);
}

.pricing-header {
    margin-bottom: 12px;
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.plan-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.25;
    text-align: center;
}

.plan-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.35;
    margin: 0;
    height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.pricing-amount-box {
    margin: 14px 0 20px 0;
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    height: 90px;
    text-align: center;
}

.price-currency {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    vertical-align: baseline;
    margin-right: 2px;
}

.price-value {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: var(--font-heading);
    display: inline-block;
    vertical-align: baseline;
}

.price-period {
    font-size: 0.88rem;
    color: #64748b;
    display: inline-block;
    vertical-align: baseline;
    margin-left: 4px;
}

.renewal-note {
    font-size: 0.78rem;
    color: #0284c7;
    margin-top: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    text-align: center;
}

/* Interactive Check Price Button & Box */
.btn-check-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, rgba(253, 144, 9, 0.1), rgba(253, 144, 9, 0.03));
    color: var(--primary);
    border: 1.5px dashed var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.btn-check-price:hover {
    background: var(--primary);
    color: #ffffff;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 144, 9, 0.35);
}

.btn-reveal-all-prices {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-reveal-all-prices:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(253, 144, 9, 0.35);
}

.price-revealed-box {
    animation: fadeInPrice 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.plan-select-dropdown {
    width: 100%;
    background-color: #f8fafc;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: auto;
    margin-bottom: 14px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.plan-select-dropdown:hover {
    border-color: var(--primary);
    background-color: #ffffff;
}

.plan-select-dropdown:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(253, 144, 9, 0.2);
}

.pricing-features-list {
    margin: 0 auto 20px auto;
    width: max-content;
    max-width: 100%;
    flex: 1 0 auto;
    text-align: left;
}

.feature-header-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 8px;
    line-height: 1.35;
    min-height: 20px;
    text-align: left;
    white-space: nowrap;
}

.pricing-features-list li strong {
    color: #0f172a;
}

.pricing-features-list li i {
    color: #10b981;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.pricing-card-btn {
    width: 100%;
    margin-top: 0;
}

/* ==========================================================================
   7. FEATURE GRIDS & WHY WEBINHOST (LIGHT MODE)
   ========================================================================== */
.features-section {
    padding: 65px 0;
    background: #ffffff;
}

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

.feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: #fff7ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.feature-card-title {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.feature-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

/* ==========================================================================
   8. COMPARISON TABLE (LIGHT MODE)
   ========================================================================== */
.comparison-section {
    padding: 65px 0;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #334155;
}

.comparison-table thead th {
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #0f172a;
}

.comparison-table .check-yes {
    color: var(--success);
    font-weight: bold;
}

.comparison-table .check-no {
    color: #94a3b8;
}

/* ==========================================================================
   9. FAQ ACCORDION (2-COLUMN PILL DESIGN)
   ========================================================================== */
.faq-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.faq-tagline {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.faq-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 35px;
}

.faq-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: var(--primary);
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(253, 144, 9, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    background: transparent;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    gap: 14px;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    font-size: 1.15rem;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    display: none;
    padding: 0 28px 22px;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .faq-grid-2col {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .faq-title {
        font-size: 2rem;
    }
    .faq-question {
        padding: 14px 20px;
        font-size: 0.92rem;
    }
    .faq-answer {
        padding: 0 20px 18px;
    }
}

/* ==========================================================================
   10. TESTIMONIALS & TRUSTPILOT (LIGHT MODE)
   ========================================================================== */
.testimonials-section {
    padding: 65px 0;
    background: #ffffff;
}

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

.testimonial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid #cbd5e1;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.author-role {
    font-size: 0.8rem;
    color: #64748b;
}

/* ==========================================================================
   11. PAGE HERO & INNER PAGES (LIGHT MODE)
   ========================================================================== */
.page-hero-section {
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(253, 144, 9, 0.12);
    border: 1px solid rgba(253, 144, 9, 0.3);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-hero-title {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 20px;
}

.breadcrumb-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748b;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.breadcrumb-container a:hover {
    color: var(--primary);
}

.breadcrumb-container .sep {
    font-size: 0.7rem;
    color: #94a3b8;
}

.breadcrumb-container .current {
    color: var(--primary);
    font-weight: 600;
}

/* Legal / Policy Content Card */
.legal-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 45px;
    line-height: 1.8;
    color: #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.legal-content-card h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content-card h2:first-child {
    margin-top: 0;
}

.legal-content-card p {
    color: #475569;
    margin-bottom: 20px;
}

/* ==========================================================================
   12. CONTACT PAGE STYLES (LIGHT MODE)
   ========================================================================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-channel-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.contact-channel-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.channel-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: #fff7ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.channel-content h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.channel-content p, .channel-content a {
    color: #64748b;
    font-size: 0.92rem;
}

.channel-content a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
}

.form-input, .form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: #0f172a;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(253, 144, 9, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* ==========================================================================
   13. PRE-FOOTER TRUST & GUARANTEE SECTION
   ========================================================================== */
.pre-footer-trust-section {
    padding: 50px 0 60px;
    background-color: #f8fafc;
}

.trust-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.trust-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.trust-icon-box {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: #fff7ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.trust-card:hover .trust-icon-box {
    background: var(--primary);
    color: #ffffff;
}

.trust-content h4 {
    font-size: 0.98rem;
    color: #0f172a;
    margin-bottom: 3px;
    font-weight: 700;
}

.trust-content p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

/* Need Help Support Banner */
.need-help-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 26px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.need-help-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.support-avatar-group {
    display: flex;
    align-items: center;
}

.support-avatar-group img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-left: -12px;
    object-fit: cover;
}

.support-avatar-group img:first-child {
    margin-left: 0;
}

.need-help-text h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 3px;
    font-weight: 800;
}

.need-help-text p {
    font-size: 0.88rem;
    color: #64748b;
}

.need-help-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .trust-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .need-help-banner {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }
    .need-help-left {
        flex-direction: column;
    }
    .need-help-right {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .trust-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Main Footer */
.main-footer {
    background-color: #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about .footer-logo {
    margin-bottom: 18px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reg-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.reg-badge i {
    font-size: 1.4rem;
    color: var(--primary);
}

.reg-label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
}

.reg-num {
    font-size: 0.85rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-links a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.footer-heading {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-trust-row {
    padding: 24px 0;
    background: #05080e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #94a3b8;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-bottom {
    padding: 25px 0;
    background: #030508;
}

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

.copyright-text {
    font-size: 0.88rem;
    color: #94a3b8;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-label {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-right: 4px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Floating Widgets */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #1e293b;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* ==========================================================================
   14. COMPREHENSIVE RESPONSIVE MEDIA QUERIES (ALL DEVICES)
   ========================================================================== */

/* Global Anti-Overflow & Flexible Media */
html, body {
    overflow-x: clip !important;
    width: 100% !important;
    position: relative;
}

img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* Tablet & Medium Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-toggle-btn {
        display: flex !important;
    }
    
    .btn-header-cta {
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btn-group {
        justify-content: center;
    }

    .hero-visual-col {
        max-width: 540px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
    
    .cta-desc {
        max-width: 100%;
    }
    
    .cta-actions {
        justify-content: center;
    }

    .license-all-in-one-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    .top-contact-bar {
        display: none !important;
    }

    .top-promo-bar {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .promo-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }

    .nav-wrapper {
        height: 64px;
    }

    .brand-logo .logo-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand-sub {
        font-size: 0.6rem;
    }

    .page-hero-section {
        padding: 40px 0 50px 0;
    }

    .page-hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        line-height: 1.25;
    }

    .page-hero-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-section {
        padding: 40px 0 50px 0;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.4rem);
        line-height: 1.22;
    }

    .hero-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-btn-group .btn {
        width: 100%;
        justify-content: center;
        height: 48px;
        font-size: 0.95rem;
    }
    
    .domain-search-box {
        padding: 18px 14px;
        border-radius: 12px;
    }
    
    .domain-input-group {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .domain-input-group .domain-input {
        width: 100%;
        height: 48px;
        text-align: center;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .domain-action-btns {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .domain-action-btns button {
        width: 100%;
        height: 44px;
        font-size: 0.88rem;
        justify-content: center;
    }

    .tld-ticker-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    
    .hero-stats-row {
        display: none !important;
    }

    .hero-stat-box {
        padding: 14px 10px;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

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

    .pricing-card {
        max-width: 100%;
        padding: 24px 18px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 16px 14px 16px;
        font-size: 0.86rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-top {
        padding: 40px 0 25px;
    }

    .footer-about {
        margin-bottom: 10px;
    }

    .footer-heading {
        margin-bottom: 16px;
        font-size: 1.05rem;
    }

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

    .footer-links a {
        font-size: 0.88rem;
    }

    .footer-trust-row {
        padding: 18px 0;
    }

    .trust-flex {
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 95px !important;
        background: #030508;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bottom-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

    .social-icons {
        justify-content: center;
    }

    .payment-badges-row, .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 18px;
        left: 16px;
    }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .nav-wrapper {
        height: 58px;
    }

    .brand-logo .logo-icon-box {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-sub {
        display: none;
    }

    .currency-dropdown-toggle {
        padding: 4px 7px;
        font-size: 0.75rem;
    }

    .page-hero-title {
        font-size: 1.45rem;
    }

    .hero-title {
        font-size: 1.55rem;
    }

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

    .pricing-amount-box {
        padding: 10px 0;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .plan-select-dropdown {
        height: 44px;
        font-size: 0.85rem;
    }

    .pricing-card-btn {
        height: 46px;
        font-size: 0.9rem;
    }

    .domain-action-btns {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   RETURN VISITOR "WELCOME BACK" POPUP MODAL
   ========================================== */
.return-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.return-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.return-modal-wrapper {
    position: relative;
    max-width: 580px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.return-modal-overlay.show .return-modal-wrapper {
    transform: scale(1) translateY(0);
}

.return-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
    transition: transform 0.2s ease, background 0.2s ease;
}

.return-modal-close:hover {
    transform: scale(1.15) rotate(90deg);
    background: #dc2626;
}

.return-modal-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Modal Top Bar */
.return-modal-topbar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.return-brand-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.return-socials {
    display: flex;
    gap: 8px;
}

.return-socials a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: all 0.2s ease;
}

.return-socials a:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Modal Body */
.return-modal-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.return-modal-visual {
    position: relative;
    text-align: center;
}

.return-avatar-wrap {
    position: relative;
    display: inline-block;
}

.return-person-img {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.return-envelope-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #f59e0b;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
    animation: bounceEnvelope 2s infinite ease-in-out;
}

.return-envelope-badge .badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

@keyframes bounceEnvelope {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(6deg); }
}

/* Speech Bubble Message */
.speech-bubble-banner {
    position: relative;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.speech-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.speech-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.4;
}

.speech-text strong {
    color: #fbbf24;
}

/* Offer Box */
.return-offer-box {
    background: #eff6ff;
    border: 1.5px dashed #3b82f6;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.offer-pill {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-desc {
    font-size: 0.84rem;
    color: #334155;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
}

.coupon-tag strong {
    color: #2563eb;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.btn-modal-cta {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Modal Footer Bar */
.return-modal-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-phone {
    color: #38bdf8;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-phone:hover {
    color: #7dd3fc;
}

/* Timestamp Note */
.return-modal-note {
    margin-top: 10px;
    text-align: center;
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    width: 100%;
    border: 1px solid rgba(56, 189, 248, 0.25);
}

.return-modal-note span {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 580px) {
    .return-modal-body {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .return-modal-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
