/* ======================================
GOOGLE RESET
====================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #101828;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ======================================
ROOT VARIABLES
====================================== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #0f172a;
  --light: #f8fafc;
  --border: #e2e8f0;
  --text: #475569;
  --success: #22c55e;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

/* ======================================
CONTAINER
====================================== */
.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* ======================================
HEADER
====================================== */
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
}

/* ======================================
MOBILE MENU TOGGLE
====================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ======================================
BUTTONS
====================================== */
.header-buttons {
  display: flex;
  gap: 15px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--border);
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.secondary-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #ffffff;
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #2563eb;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* ======================================
HERO
====================================== */
.hero {
  padding: 100px 0;
  background:
    radial-gradient(circle at top right, #dbeafe 0%, transparent 30%),
    radial-gradient(circle at bottom left, #eff6ff 0%, transparent 30%), white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.badge {
  display: inline-block;
  background: #eff6ff;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  color: #334155;
  font-weight: 600;
}

/* ======================================
DASHBOARD
====================================== */
.dashboard {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dashboard-top {
  height: 55px;
  background: #0f172a;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-top span:nth-child(1) {
  background: #ef4444;
}
.dashboard-top span:nth-child(2) {
  background: #facc15;
}
.dashboard-top span:nth-child(3) {
  background: #22c55e;
}

.dashboard-content {
  padding: 35px;
}

.index-server-card {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
}

.index-server-card h2 {
  font-size: 48px;
  margin: 10px 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  transition: 0.3s;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.mini-card h4 {
  margin-bottom: 8px;
  color: #64748b;
}

/* ==========================================
SECTION TITLE
========================================== */
.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  margin: 15px 0;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: var(--text);
  font-size: 18px;
}

/* ==========================================
DOMAIN SEARCH
========================================== */
.domain-search {
  padding: 100px 0;
  background: #f8fafc;
}

.domain-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.domain-box input {
  width: 500px;
  padding: 18px;
  font-size: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
}

.domain-box select {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.domain-box button {
  padding: 18px 35px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
}

.domain-box button:hover {
  background: var(--primary-dark);
}

.domain-prices {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.domain-prices div {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.domain-prices div:hover {
  transform: translateY(-8px);
}

.domain-prices h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* ==========================================
HOSTING
========================================== */
.hosting {
  padding: 100px 0;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hosting-card {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: 0.35s;
  background: white;
}

.hosting-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.hosting-card.featured {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

.hosting-card.featured a {
  color: white;
}

.hosting-icon {
  font-size: 50px;
  margin-bottom: 25px;
}

.hosting-card h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.hosting-card p {
  margin-bottom: 30px;
}

.hosting-card a {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================
PRICING - FIXED WITH SCROLL WRAPPER
========================================== */
.pricing-section {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  background: #e8efff;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 38px;
  margin: 0 0 14px;
}

.section-head p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.pricing-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px 0;
  scrollbar-width: thin;
}

.pricing-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.pricing-scroll-wrapper::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.pricing-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 60px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.price {
  font-size: 38px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 24px;
}

.currency {
  font-size: 19px;
  vertical-align: top;
}

.duration {
  font-size: 15px;
  color: #777;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  text-align: left;
}

.pricing-card ul li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.pricing-card ul li i {
  color: #16a34a;
  margin-right: 8px;
}

.featured {
  background: #2563eb;
  color: #fff;
  border: 2px solid #1d4ed8;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
}

.featured h3,
.featured .price,
.featured ul li,
.featured .duration {
  color: #fff;
}

.featured ul li {
  border-color: rgba(255, 255, 255, 0.15);
}

.featured ul li i {
  color: #4ade80;
}

.popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card .btn {
  width: 100%;
  display: inline-block;
  padding: 13px 0;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 14.5px;
  transition: 0.2s;
}

.btn-primary {
  background: #fff;
  color: #2563eb;
}

.btn-primary:hover {
  background: #f1f5ff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* ==========================================
PRICING RESPONSIVE FIX
========================================== */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
    min-width: 800px;
  }

  .pricing-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 25px 0;
  }

  .pricing-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .pricing-scroll-wrapper::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }

  .pricing-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
    overflow: hidden;
  }

  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
    min-width: 700px;
    gap: 16px;
    margin-top: 40px;
  }

  .pricing-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5px 0 25px 0;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-card {
    min-width: 180px;
    padding: 24px 16px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

  .price {
    font-size: 26px;
  }

  .currency {
    font-size: 15px;
  }

  .duration {
    font-size: 12px;
  }

  .pricing-card ul li {
    font-size: 12px;
    padding: 6px 0;
  }

  .pricing-card .btn {
    padding: 10px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    min-width: 600px;
    gap: 12px;
  }

  .pricing-card {
    min-width: 150px;
    padding: 18px 12px;
  }

  .pricing-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .price {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .pricing-card ul li {
    font-size: 11px;
    padding: 5px 0;
  }

  .popular {
    font-size: 10px;
    padding: 4px 12px;
    top: -12px;
  }

  .pricing-card .btn {
    padding: 8px;
    font-size: 12px;
    border-radius: 8px;
  }

  .section-head h2 {
    font-size: 24px;
  }
}

/* ==========================================
INFRASTRUCTURE
========================================== */
.infrastructure {
  padding: 120px 0;
  background: #081221;
  color: white;
  overflow: hidden;
}

.infra-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infra-content h2 {
  font-size: 48px;
  margin: 20px 0;
  line-height: 1.2;
}

.infra-content p {
  color: #b8c5d9;
  margin-bottom: 40px;
  font-size: 18px;
}

.infra-list {
  display: grid;
  gap: 25px;
  margin-bottom: 45px;
}

.infra-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.infra-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(37, 99, 235, 0.12);
  font-size: 28px;
  flex-shrink: 0;
}

.infra-item h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.infra-item p {
  margin: 0;
  font-size: 15px;
  color: #9fb3c8;
}

.server-window {
  background: #0f172a;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.server-top {
  display: flex;
  gap: 10px;
  padding: 20px;
  background: #111c32;
}

.server-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.server-top span:nth-child(1) {
  background: #ef4444;
}
.server-top span:nth-child(2) {
  background: #f59e0b;
}
.server-top span:nth-child(3) {
  background: #22c55e;
}

.server-body {
  padding: 35px;
}

.online {
  background: #0b2747;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.online strong {
  color: #8ab4ff;
  font-size: 13px;
  letter-spacing: 1px;
}

.online h3 {
  font-size: 36px;
  margin-top: 10px;
  color: #4ade80;
}

.progress {
  margin-bottom: 22px;
}

.progress label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: #1e293b;
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.cpu {
  width: 82%;
}
.ram {
  width: 67%;
}
.network {
  width: 91%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.stats-grid div {
  background: #111c32;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
}

.stats-grid h4 {
  font-size: 28px;
  margin-bottom: 8px;
  color: white;
}

.stats-grid span {
  color: #94a3b8;
  font-size: 14px;
}

/* ==========================================
GLOBAL NETWORK
========================================== */
.global-network {
  padding: 120px 0;
  background: #ffffff;
}

.network-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.world-map {
  position: relative;
  width: 100%;
  height: 480px;
  background: url(images/world-map.svg) center no-repeat;
  background-size: contain;
}

.world-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-circle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.12);
  animation: pulse 2.5s infinite;
}

.map-circle span {
  position: absolute;
  top: 25px;
  left: -10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.usa {
  top: 170px;
  left: 120px;
}
.uk {
  top: 120px;
  left: 260px;
}
.germany {
  top: 140px;
  left: 300px;
}
.uae {
  top: 220px;
  left: 360px;
}
.india {
  top: 250px;
  left: 430px;
}
.singapore {
  top: 300px;
  left: 520px;
}
.australia {
  top: 390px;
  left: 610px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.network-features {
  display: grid;
  gap: 25px;
}

.network-card {
  padding: 35px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: 0.35s;
}

.network-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.network-card h3 {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 12px;
}

.network-card p {
  color: #64748b;
  font-size: 16px;
}

/* ==========================================
WHY US
========================================== */
.why-us {
  padding: 120px 0;
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.why-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 50px;
  margin-bottom: 25px;
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.why-card p {
  color: #64748b;
}

/* ==========================================
HIGHLIGHTS
========================================== */
.highlights {
  padding: 120px 0;
}

.highlights .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.highlight-left h2 {
  font-size: 46px;
  margin: 20px 0;
}

.highlight-left p {
  margin-bottom: 40px;
  font-size: 18px;
  color: #64748b;
}

.highlight-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-box {
  padding: 35px;
  border-radius: 20px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: 0.35s;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-box p {
  color: #64748b;
  font-size: 15px;
}

/* ==========================================
FAQ
========================================== */
.faq {
  padding: 120px 0;
  background: #f8fafc;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq details {
  background: white;
  border-radius: 18px;
  padding: 22px 28px;
  border: 1px solid #e2e8f0;
}

.faq summary {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 18px;
  color: #64748b;
  line-height: 1.7;
}

/* ==========================================
BLOG
========================================== */
.latest-blog {
  padding: 120px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.blog-card {
  overflow: hidden;
  background: white;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-content span {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.blog-content p {
  margin-bottom: 25px;
  color: #64748b;
}

.blog-content a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

/* ==========================================
FINAL CTA
========================================== */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.final-cta p {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================
PARTNERS
========================================== */
.trust-section {
  padding: 100px 0;
  background: #f8fafc;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.partner-card {
  background: white;
  padding: 35px;
  text-align: center;
  font-weight: 700;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================
NEWSLETTER
========================================== */
.newsletter {
  padding: 100px 0;
  background: #081221;
  color: white;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input {
  width: 360px;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 18px 35px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

/* ==========================================
FOOTER
========================================== */
.footer {
  background: #050b16;
  color: #94a3b8;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer h4 {
  color: white;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s;
}

.footer a:hover {
  color: white;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.socials a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e3c7a;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #2457ff;
  transform: translateY(-6px);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ==================================================
FLOATING CONTACT BUTTON
================================================== */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  visibility: hidden;
  pointer-events: none;
}

.floating-contact-btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.contact-float-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #ffffff;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
  position: relative;
  letter-spacing: 0.3px;
}

.contact-float-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 48px rgba(79, 70, 229, 0.55);
  color: #ffffff;
}

.contact-float-btn i {
  font-size: 1.2rem;
  animation: contactPulse 2s ease-in-out infinite;
}

.contact-float-btn span {
  font-size: 0.95rem;
}

.contact-float-btn::after {
  content: "💬";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.2rem;
  animation: contactBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes contactBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(10deg);
  }
}

/* ==================================================
MOBILE RESPONSIVE
================================================== */

/* MOBILE NAVIGATION */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 1px solid #e2e8f0;
  }

  nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    display: flex !important;
  }

  nav a {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  nav a:hover {
    background: #f1f5f9;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hosting-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* PRICING SCROLL FIX FOR TABLETS */
  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
    min-width: 800px;
  }

  .pricing-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 25px 0;
  }

  .pricing-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .pricing-scroll-wrapper::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }

  .pricing-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
  }
}

/* TABLETS & MOBILE */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 10px 0;
    height: auto;
    min-height: 70px;
    position: relative;
  }

  .logo img {
    height: 32px;
    width: auto;
  }

  .header-buttons {
    gap: 8px;
  }

  .login-btn,
  .primary-btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

  .hero {
    padding: 60px 0 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .primary-btn,
  .hero-buttons .secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 13px;
  }

  .dashboard-content {
    padding: 20px;
  }

  .index-server-card h2 {
    font-size: 32px;
  }

  .mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mini-card {
    padding: 16px;
  }

  .domain-search {
    padding: 60px 0;
  }

  .domain-box {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .domain-box input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  .domain-box select {
    padding: 14px;
    width: 100%;
  }

  .domain-box button {
    padding: 14px;
    width: 100%;
  }

  .domain-prices {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .domain-prices div {
    padding: 20px;
  }

  .domain-prices h3 {
    font-size: 20px;
  }

  .hosting {
    padding: 60px 0;
  }

  .hosting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hosting-card {
    padding: 28px 24px;
  }

  .hosting-card h3 {
    font-size: 22px;
  }

  /* PRICING SECTION MOBILE FIX */
  .pricing-section {
    padding: 60px 0;
    overflow: hidden;
  }

  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
    min-width: 700px;
    gap: 16px;
    margin-top: 40px;
  }

  .pricing-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5px 0 25px 0;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-card {
    min-width: 180px;
    padding: 24px 16px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

  .price {
    font-size: 26px;
  }

  .currency {
    font-size: 15px;
  }

  .duration {
    font-size: 12px;
  }

  .pricing-card ul li {
    font-size: 12px;
    padding: 6px 0;
  }

  .pricing-card .btn {
    padding: 10px;
    font-size: 13px;
  }

  .infrastructure {
    padding: 60px 0;
  }

  .infra-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infra-content h2 {
    font-size: 28px;
  }

  .infra-content p {
    font-size: 15px;
  }

  .infra-item {
    gap: 14px;
  }

  .infra-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .server-body {
    padding: 20px;
  }

  .online h3 {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stats-grid div {
    padding: 16px;
  }

  .stats-grid h4 {
    font-size: 22px;
  }

  .global-network {
    padding: 60px 0;
  }

  .network-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .world-map {
    height: 300px;
    background-size: contain;
  }

  .map-circle {
    width: 12px;
    height: 12px;
  }

  .map-circle span {
    font-size: 10px;
    top: 18px;
    left: -8px;
    white-space: nowrap;
  }

  .usa {
    top: 110px;
    left: 70px;
  }
  .uk {
    top: 80px;
    left: 160px;
  }
  .germany {
    top: 95px;
    left: 190px;
  }
  .uae {
    top: 140px;
    left: 230px;
  }
  .india {
    top: 160px;
    left: 270px;
  }
  .singapore {
    top: 190px;
    left: 330px;
  }
  .australia {
    top: 250px;
    left: 390px;
  }

  .network-card {
    padding: 24px;
  }

  .network-card h3 {
    font-size: 32px;
  }

  .why-us {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px 24px;
  }

  .highlights {
    padding: 60px 0;
  }

  .highlights .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .highlight-left h2 {
    font-size: 28px;
  }

  .highlight-right {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-box {
    padding: 24px;
  }

  .latest-blog {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-content {
    padding: 20px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq details {
    padding: 16px 18px;
  }

  .faq summary {
    font-size: 16px;
  }

  .faq p {
    font-size: 14px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .primary-btn,
  .cta-buttons .secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .trust-section {
    padding: 60px 0;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-card {
    padding: 20px;
    font-size: 13px;
  }

  .newsletter {
    padding: 60px 0;
  }

  .newsletter-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .socials {
    justify-content: center;
    margin-top: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 20px 0 10px;
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
  }

  .contact-float-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .contact-float-btn span {
    font-size: 0.85rem;
  }

  .contact-float-btn i {
    font-size: 1rem;
  }

  .contact-float-btn::after {
    font-size: 1rem;
    top: -8px;
    right: -8px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
    gap: 8px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title p {
    font-size: 14px;
  }

  .domain-prices {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .domain-prices div {
    padding: 16px;
  }

  .domain-prices h3 {
    font-size: 18px;
  }

  /* PRICING - EXTRA SMALL PHONES */
  .pricing-grid {
    min-width: 600px;
    gap: 12px;
  }

  .pricing-card {
    min-width: 150px;
    padding: 18px 12px;
  }

  .pricing-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .price {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .pricing-card ul li {
    font-size: 11px;
    padding: 5px 0;
  }

  .popular {
    font-size: 10px;
    padding: 4px 12px;
    top: -12px;
  }

  .pricing-card .btn {
    padding: 8px;
    font-size: 12px;
    border-radius: 8px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .infra-content h2 {
    font-size: 24px;
  }

  .stat h3 {
    font-size: 24px;
  }

  .floating-contact-btn {
    bottom: 15px;
    right: 15px;
  }

  .contact-float-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    gap: 8px;
    border-radius: 40px;
  }

  .contact-float-btn span {
    font-size: 0.8rem;
  }

  .contact-float-btn i {
    font-size: 0.9rem;
  }

  .contact-float-btn::after {
    font-size: 0.9rem;
    top: -6px;
    right: -6px;
  }
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .domain-prices {
    grid-template-columns: repeat(2, 1fr);
  }

  .hosting-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .domain-prices {
    grid-template-columns: 1fr;
  }

  .domain-box input {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-float-btn i,
  .contact-float-btn::after {
    animation: none !important;
  }
  .contact-float-btn:hover {
    transform: none !important;
  }
  .map-circle {
    animation: none !important;
  }
}
