/* ===== CSS Variables ===== */
:root {
    --white: #ffffff;
    --orange: #f47c20;
    --orange-dark: #d96a10;
    --orange-light: #fff3e6;
    --black: #1a1a1a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --info: #3b82f6;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main { flex: 1; padding-top: 70px; }
a { text-decoration: none; color: var(--orange); transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.news-content ul { list-style: disc; padding-left: 1.5rem; }
.news-content ul li { margin-bottom: 0.5rem; }

/* ===== Container ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { line-height: 1.3; color: var(--gray-900); font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.brand-icon { color: var(--orange); font-size: 1.5rem; }
.navbar-menu { display: flex; align-items: center; gap: 0.25rem; }
.navbar-menu > li > a {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 0.85rem; border-radius: var(--radius);
    color: var(--gray-600); font-weight: 500; font-size: 0.95rem;
    transition: all var(--transition);
}
.navbar-menu > li > a:hover,
.navbar-menu > li > a.active { color: var(--orange); background: var(--orange-light); }
.navbar-menu > li > a .fa-chevron-down { font-size: 0.65rem; }
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 0.5rem 0; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block; padding: 0.6rem 1.25rem; color: var(--gray-600);
    font-size: 0.9rem; transition: all var(--transition);
}
.dropdown li a:hover { background: var(--orange-light); color: var(--orange); }
.dropdown-divider { border-top: 1px solid var(--gray-200); margin: 0.25rem 0; }
.navbar-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); transition: all var(--transition); }

body.nav-open {
    overflow: hidden;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.5rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); color: var(--orange-dark); }
.btn-sm, .btn-small { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-success { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-danger { background: var(--error); color: var(--white); border-color: var(--error); }
.btn-info { background: var(--info); color: var(--white); border-color: var(--info); }

/* Disabled / out-of-stock buttons */
.btn-disabled, .btn[disabled], .btn.disabled {
    background: var(--gray-200) !important;
    color: var(--gray-500) !important;
    border-color: var(--gray-200) !important;
    cursor: not-allowed;
    opacity: 0.95;
}
.btn-disabled:hover, .btn[disabled]:hover, .btn.disabled:hover { background: var(--gray-200) !important; color: var(--gray-500) !important; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 8rem 0 5rem; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(244,124,32,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 650px; }
.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 1.25rem; }
.hero h1 .text-orange { color: var(--orange); }
.hero p { color: var(--gray-300); font-size: 1.2rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Cards ===== */
.card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 2rem;
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 1rem; }

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--gray-900); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--gray-300); }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 6rem 0 3rem; text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: var(--gray-400); font-size: 1.1rem; }

/* ===== Forms ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--gray-700); font-size: 0.9rem; }
.form-control {
    width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--gray-300);
    border-radius: var(--radius); font-size: 0.95rem; font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,124,32,0.15); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card { max-width: 480px; margin: 0 auto; }
.form-card-wide { max-width: 640px; margin: 0 auto; }

/* ===== Alerts ===== */
.alert {
    padding: 0.85rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: inherit; opacity: 0.6; }
.alert-close:hover { opacity: 1; }
.flash-messages {
    position: fixed; top: 70px; left: 0; right: 0; z-index: 998;
    pointer-events: none; padding: 0 1.5rem;
}
.flash-messages .alert {
    max-width: 900px; margin: 0.75rem auto 0;
    pointer-events: all; box-shadow: var(--shadow-md);
}

/* ===== Badges ===== */
.badge {
    display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
}
.badge-success { background: #ecfdf5; color: #065f46; }
.badge-warning { background: #fffbeb; color: #92400e; }
.badge-error { background: #fef2f2; color: #991b1b; }
.badge-info { background: #eff6ff; color: #1e40af; }
.badge-default { background: var(--gray-100); color: var(--gray-600); }

/* ===== Coming Soon ===== */
.coming-soon {
    background: var(--orange-light);
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    padding: 0.75rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--orange-dark);
    font-weight: 500;
}
.coming-soon i { font-size: 1.1rem; }

/* Muted page state */
.page-muted {
    opacity: 0.7;
}

/* Disabled nav link */
.nav-link-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}
.nav-link-disabled:hover {
    color: var(--gray-600) !important;
    background: none !important;
}

/* ===== Tables ===== */
.table-responsive { overflow-x: auto; }
.table {
    width: 100%; border-collapse: collapse; font-size: 0.95rem;
}
.table th, .table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
.table th { font-weight: 600; color: var(--gray-600); background: var(--gray-50); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }
.table tbody tr:hover { background: var(--gray-50); }

/* ===== Dashboard Layout ===== */
.dashboard-layout { display: flex; }
.sidebar {
    width: 260px; background: var(--gray-900); color: var(--white); padding: 1.5rem 0;
    flex-shrink: 0; position: sticky; top: 70px; height: calc(100vh - 70px); overflow-y: auto;
}
.sidebar-menu { padding: 0; }
.sidebar-menu li a {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1.5rem; color: var(--gray-400); font-size: 0.9rem;
    transition: all var(--transition);
}
.sidebar-menu li a:hover, .sidebar-menu li a.active { background: rgba(255,255,255,0.08); color: var(--white); }
.sidebar-menu li a.active { border-right: 3px solid var(--orange); }
.sidebar-menu li a i { width: 20px; text-align: center; }
.sidebar-section { padding: 0.5rem 1.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); margin-top: 1rem; }
.dashboard-content { flex: 1; padding: 2rem; min-width: 0; }
.dashboard-header { margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.dashboard-header h1 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.dashboard-header p { color: var(--gray-500); }

/* ===== Admin Dashboard Grid ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.dashboard-grid .card:first-child {
    grid-column: 1 / -1;
}
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-grid .card:first-child {
        grid-column: auto;
    }
}

/* ===== Stats Cards ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.stat-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}
.stat-icon { width: 50px; height: 50px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.stat-icon.orange { background: var(--orange-light); color: var(--orange); }
.stat-icon.blue { background: #eff6ff; color: var(--info); }
.stat-icon.green { background: #ecfdf5; color: var(--success); }
.stat-icon.red { background: #fef2f2; color: var(--error); }
.stat-info h3 { font-size: 1.75rem; margin-bottom: 0; }
.stat-info p { color: var(--gray-500); font-size: 0.85rem; margin: 0; }
.stat-number { display: block; font-size: 1.75rem; font-weight: 700; line-height: 1.2; }
.stat-label { display: block; color: var(--gray-500); font-size: 0.85rem; }

/* ===== Hosting Plans ===== */
.plan-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.plan-card:hover { border-color: var(--orange); }
.plan-card.featured { border-color: var(--orange); }
/* Removed duplicate pseudo-element 'Popular' - using .plan-badge markup instead */
.plan-card h3 { margin-bottom: 0.5rem; }
.plan-price { font-size: 2.5rem; font-weight: 700; color: var(--gray-900); margin: 1rem 0; }
.plan-price span { font-size: 1rem; color: var(--gray-500); font-weight: 400; }
.plan-features { margin: 1.5rem 0; text-align: left; flex: 1; }
.plan-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 0.5rem; color: var(--gray-600); font-size: 0.9rem; }
.plan-features li i { color: var(--orange); font-size: 0.85rem; }
.plan-card a.btn { margin-top: auto; }

/* ===== Service Detail ===== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.service-icon-large { font-size: 5rem; color: var(--orange); margin-bottom: 1rem; }

/* Portfolio carousel (used on Web Design service page) */
.portfolio-carousel { position: relative; overflow: hidden; }
.portfolio-carousel .pc-slide { display: block; }
.portfolio-carousel .pc-slide img { width: 100%; height: auto; border-radius: 6px; display:block; }
.portfolio-image {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center center;
    border-radius: 6px;
    background: var(--gray-100);
    display: block;
}
@media (max-width: 768px) {
    .portfolio-image { height: auto; }
}
.pc-slide { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pc-slide div { color: var(--gray-700); margin-top: 0.5rem; }

.portfolio-carousel .pc-controls { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display:flex; justify-content:space-between; padding:0 1rem; pointer-events:none; }
.portfolio-carousel .pc-controls button { pointer-events:all; }

/* ===== Ticket ===== */
.ticket-detail { max-width: 800px; }
.reply-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.reply-card.admin-reply { border-left: 3px solid var(--orange); }
.reply-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.reply-header strong { font-size: 0.95rem; }
.reply-header span { color: var(--gray-500); font-size: 0.85rem; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 4rem 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* ===== Footer ===== */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer h3, .footer h4 { color: var(--white); margin-bottom: 1rem; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: var(--gray-400); font-size: 0.9rem; }
.footer ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-contact li i { color: var(--orange); width: 16px; text-align: center; }
.footer-bottom { border-top: 1px solid var(--gray-800); padding: 1.5rem 0; margin-top: 3rem; text-align: center; font-size: 0.85rem; }

/* ===== Pagination ===== */
.pagination { display: flex; gap: 0.25rem; justify-content: center; margin-top: 2rem; }
.pagination a, .pagination span {
    padding: 0.5rem 0.85rem; border-radius: var(--radius);
    font-size: 0.9rem; font-weight: 500;
}
.pagination a { color: var(--gray-600); border: 1px solid var(--gray-200); }
.pagination a:hover { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
.pagination .active { background: var(--orange); color: var(--white); border: 1px solid var(--orange); }

/* ===== Empty State ===== */
.empty-state { text-align: center; padding: 3rem; color: var(--gray-500); }
.empty-state i { font-size: 3rem; margin-bottom: 1rem; color: var(--gray-300); }
.empty-state h3 { color: var(--gray-600); margin-bottom: 0.5rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero { padding: 6rem 0 3rem; }

    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column;
        padding: 5.75rem 1rem 1.5rem; gap: 0; align-items: stretch;
        transform: translateX(100%); transition: transform 0.3s ease;
        overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 1001;
    }
    .navbar-menu.open { transform: translateX(0); }
    .navbar-menu > li { width: 100%; }
    .navbar-menu > li > a { padding: 0.85rem 1rem; font-size: 1rem; }
    .has-dropdown .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        border: none; box-shadow: none; padding-left: 1rem;
    }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .dashboard-layout { flex-direction: column; }
    .sidebar { width: 100%; height: auto; position: static; }
    .dashboard-content { padding: 1.5rem; }

    .plan-price { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   HOSTING PAGES
   ===================================================== */

/* Hosting type selection grid */
.hosting-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hosting-type-grid { grid-template-columns: repeat(2, 1fr); }
}

.hosting-type-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hosting-type-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    color: inherit;
}

.hosting-type-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.hosting-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.hosting-type-card p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hosting-type-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}
.hosting-type-features li {
    padding: 0.35rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}


.hosting-type-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Plans grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.plan-card {
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.plan-type-badge {
    display: inline-block;
    background: var(--gray-700);
    color: var(--gray-300);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plan-annual {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

/* Page header breadcrumb / back link */
.page-header-breadcrumb {
    margin-bottom: 1rem;
}
.page-header-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}
.page-header-breadcrumb a:hover {
    color: #fff;
}

/* Note below sections */
.section-footer-note {
    text-align: center;
    padding-top: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Feature card (icon + title + text) */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.feature-card .feature-card-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}
.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}
.feature-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* VPS coming soon */
.vps-coming-soon {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1rem;
}
.vps-coming-soon-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--orange);
}
.vps-coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}
.vps-coming-soon p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.vps-features-preview {
    margin-top: 4rem;
}

/* Order page layout */
.order-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.order-form-col {}

.order-summary-col {
    position: sticky;
    top: 90px;
}

.order-summary {}

.summary-plan {
    margin-bottom: 1.25rem;
}
.summary-plan h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--gray-800);
}

.summary-badge {
    display: inline-block;
    background: rgba(255,107,0,0.12);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.summary-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}
.summary-features li {
    padding: 0.3rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.summary-features li i {
    color: var(--orange);
    width: 1rem;
    flex-shrink: 0;
}

.summary-pricing {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.summary-price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.summary-price-total {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0 0;
    margin-top: 0.4rem;
    border-top: 2px solid var(--gray-200);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-800);
}

/* Card section titles */
.card-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-section-title i {
    color: var(--orange);
}

/* Field hint text */
.field-hint {
    display: block;
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Checkbox label alignment */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--orange);
}

/* =====================================================
   HOSTING RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .hosting-type-grid { grid-template-columns: 1fr; }
    .order-layout { grid-template-columns: 1fr; }
    .order-summary-col { position: static; }
}

@media (max-width: 480px) {
    .vps-coming-soon h2 { font-size: 1.5rem; }
    .plans-grid { grid-template-columns: 1fr; }
}
