/* ============================================
   ZATHURA SOLUTIONS - MAIN STYLESHEET
   White & Blue Theme | Modern & Trendy
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0d2461;
  --blue-mid:    #1a3a8f;
  --blue-main:   #1a56d9;
  --blue-light:  #4f8ef7;
  --blue-pale:   #dbeafe;
  --blue-ghost:  #f0f6ff;
  --accent:      #f0a500;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #4a5568;
  --gray-800:    #1a202c;
  --gradient:    linear-gradient(135deg, #0d2461 0%, #1a56d9 55%, #4f8ef7 100%);
  --gradient-r:  linear-gradient(135deg, #4f8ef7 0%, #1a56d9 55%, #0d2461 100%);
  --shadow-sm:   0 1px 4px rgba(13,36,97,.07);
  --shadow-md:   0 4px 20px rgba(13,36,97,.11);
  --shadow-lg:   0 10px 40px rgba(13,36,97,.15);
  --shadow-xl:   0 20px 60px rgba(13,36,97,.20);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(30,86,217,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,86,217,.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--blue-main);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* --- SECTION COMMON --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-main);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.section-header p { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid #e2e8f0;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  border-bottom-color: #cbd5e1;
}

.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 13px;
  display: flex; align-items: center;
  height: 90px;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
  padding-right: 40px;
}
.nav-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 18px;
  font-size: .97rem; font-weight: 600;
  color: var(--gray-800);
  border-radius: 8px;
  letter-spacing: .01em;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue-main);
  background: var(--blue-ghost);
}
.nav-links > li > a .fa-chevron-down { font-size: .7rem; transition: var(--transition); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-menu li a i { color: var(--blue-main); width: 18px; }
.dropdown-menu li a:hover { background: var(--blue-ghost); color: var(--blue-main); }

.nav-cta {
  margin-left: 20px; padding: 13px 28px; font-size: .95rem; font-weight: 700;
  background: var(--blue-dark) !important;
  box-shadow: 0 4px 14px rgba(13,36,97,.3);
  border: 2px solid var(--blue-main);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--blue-dark);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background: var(--blue-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: .97;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '✦'; color: #93c5fd; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, #93c5fd, #dbeafe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); }
.stat p { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 420px;
}
.hero-logo-center {
  width: 200px; height: 200px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(59,130,246,.4);
}
.hero-logo-center img { width: 160px; }

.hero-card {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 600; font-size: .88rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero-card i { font-size: 1.2rem; color: #93c5fd; }

.card-float   { top: 20px;  left: 0;   animation: float 3s ease-in-out infinite; }
.card-float-2 { top: 20px;  right: 0;  animation: float 3s ease-in-out infinite .5s; }
.card-float-3 { bottom: 60px; left: 0; animation: float 3s ease-in-out infinite 1s; }
.card-float-4 { bottom: 60px; right: 0; animation: float 3s ease-in-out infinite 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* --- SERVICES SECTION --- */
.services { padding: 100px 0; background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue-pale); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: var(--blue-ghost);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-icon i { font-size: 1.6rem; color: var(--blue-main); }
.service-card:hover .service-icon { background: var(--gradient); }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); }
.service-card p  { color: var(--gray-600); font-size: .93rem; line-height: 1.65; flex: 1; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-main); font-weight: 600; font-size: .88rem;
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* --- WHY US --- */
.why-us { padding: 100px 0; background: var(--white); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.why-img-wrap {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.why-logo-big { width: 220px; margin: 0 auto; }

.why-badge-1, .why-badge-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .85rem;
  color: var(--blue-dark);
  box-shadow: var(--shadow-lg);
}
.why-badge-1 { top: -16px; right: -16px; }
.why-badge-2 { bottom: -16px; left: -16px; }
.why-badge-1 i, .why-badge-2 i { color: var(--blue-main); }

.why-content { display: flex; flex-direction: column; gap: 20px; }
.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: var(--blue-dark); line-height: 1.25;
}
.why-content > p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; }

.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--gray-800); font-weight: 500;
}
.why-list li i { color: var(--blue-main); font-size: 1.1rem; flex-shrink: 0; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 0; background: var(--blue-ghost); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}
.testimonial-card.featured p { color: rgba(255,255,255,.9); }

.stars { display: flex; gap: 3px; }
.stars i { color: #f59e0b; font-size: .9rem; }
.testimonial-card.featured .stars i { color: #fde68a; }

.testimonial-card p { font-size: .95rem; line-height: 1.7; color: var(--gray-600); font-style: italic; flex: 1; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  color: var(--blue-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-card.featured .author-avatar { background: rgba(255,255,255,.25); color: var(--white); }
.testimonial-author strong { display: block; font-size: .92rem; color: var(--blue-dark); }
.testimonial-card.featured .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: .8rem; color: var(--gray-400); }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,.7); }

/* --- CTA BANNER --- */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white); margin-bottom: 8px;
}
.cta-content p { color: rgba(255,255,255,.8); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- FOOTER --- */
.footer { background: var(--white); padding: 80px 0 0; border-top: 2px solid var(--gray-200); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand img { height: 80px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray-600); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--blue-ghost);
  border: 1px solid var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-main); font-size: .85rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--blue-main); border-color: var(--blue-main); color: var(--white); }

.footer-links h4, .footer-contact h4 {
  color: var(--blue-dark); font-size: .95rem; font-weight: 700;
  margin-bottom: 20px; letter-spacing: .03em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  color: var(--gray-600); font-size: .88rem;
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--blue-main); padding-left: 4px; }

.footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--gray-600); font-size: .88rem;
  margin-bottom: 10px; line-height: 1.5;
}
.footer-contact p i { color: var(--blue-main); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: var(--gray-500); font-size: .83rem; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-tag { background: rgba(255,255,255,.2); color: var(--white); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin: 12px 0;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* --- PLANS / PRICING CARDS --- */
.plans-section { padding: 80px 0; background: var(--gray-50); }
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.plan-card.popular {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.03);
}
.plan-card:hover:not(.popular) { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.popular-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.25);
  color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: .06em; text-transform: uppercase;
}
.plan-icon {
  width: 60px; height: 60px;
  background: var(--blue-ghost);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.plan-icon i { font-size: 1.5rem; color: var(--blue-main); }
.plan-card.popular .plan-icon { background: rgba(255,255,255,.2); }
.plan-card.popular .plan-icon i { color: var(--white); }

.plan-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); }
.plan-card.popular h3 { color: var(--white); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price .amount { font-size: 2.2rem; font-weight: 800; color: var(--blue-dark); }
.plan-card.popular .plan-price .amount { color: var(--white); }
.plan-price .period { font-size: .85rem; color: var(--gray-400); }
.plan-card.popular .plan-price .period { color: rgba(255,255,255,.7); }

.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--gray-600);
}
.plan-card.popular .plan-features li { color: rgba(255,255,255,.85); }
.plan-features li i { color: var(--blue-main); font-size: .9rem; flex-shrink: 0; }
.plan-card.popular .plan-features li i { color: #93c5fd; }

.plan-card .btn-primary { justify-content: center; }
.plan-card.popular .btn-primary { background: var(--white); color: var(--blue-main); box-shadow: none; }
.plan-card.popular .btn-primary:hover { background: var(--blue-ghost); }

/* --- FEATURES GRID --- */
.features-section { padding: 80px 0; background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px;
}
.feature-item {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue-pale); transform: translateY(-4px); }
.feature-item .fi-icon {
  width: 64px; height: 64px;
  background: var(--blue-ghost);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feature-item .fi-icon i { font-size: 1.5rem; color: var(--blue-main); }
.feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.feature-item p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

/* --- ABOUT PAGE --- */
.about-intro { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 200px; margin: 0 auto; }
.about-text { display: flex; flex-direction: column; gap: 18px; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: var(--blue-dark); line-height: 1.25;
}
.about-text p { color: var(--gray-600); font-size: .97rem; line-height: 1.75; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 60px 0;
}
.stat-box {
  text-align: center; padding: 32px 20px;
  background: var(--blue-ghost);
  border-radius: var(--radius-lg);
}
.stat-box span { display: block; font-size: 2.2rem; font-weight: 800; color: var(--blue-main); margin-bottom: 6px; }
.stat-box p { font-size: .88rem; color: var(--gray-600); font-weight: 500; }

.team-section { padding: 80px 0; background: var(--gray-50); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem; font-weight: 800; color: var(--white);
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.team-card span { font-size: .83rem; color: var(--blue-main); font-weight: 600; }

/* --- CONTACT PAGE --- */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--blue-dark);
}
.contact-info p { color: var(--gray-600); font-size: .97rem; line-height: 1.7; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--blue-ghost);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--white); font-size: 1.1rem; }
.contact-item h4 { font-size: .9rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.contact-item p { font-size: .88rem; color: var(--gray-600); margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--blue-dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-800); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .93rem; font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-main); box-shadow: 0 0 0 3px rgba(30,86,217,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; border-radius: 10px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-content > p { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 90px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open .nav-cta { display: inline-flex; margin-top: 8px; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: none; background: var(--gray-50);
    margin-top: 4px;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .plan-card.popular { transform: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gradient);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 500;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .83rem; color: rgba(255,255,255,.7);
  margin-bottom: 16px; justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .65rem; }

/* --- PROCESS STEPS --- */
.process-section { padding: 80px 0; background: var(--gray-50); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: var(--blue-pale);
  z-index: 0;
}
.step {
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem; font-weight: 800; color: var(--blue-main);
  transition: var(--transition);
}
.step:hover .step-num { background: var(--gradient); border-color: transparent; color: var(--white); }
.step h4 { font-size: .95rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

/* --- HOSTING SPECS TABLE --- */
.hosting-table-wrap { overflow-x: auto; }
.hosting-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hosting-table th {
  background: var(--gradient);
  color: var(--white);
  padding: 16px 20px;
  text-align: left; font-size: .88rem; font-weight: 700;
}
.hosting-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem; color: var(--gray-800);
}
.hosting-table tr:last-child td { border-bottom: none; }
.hosting-table tr:hover td { background: var(--blue-ghost); }
.hosting-table td i.fa-check { color: var(--blue-main); }
.hosting-table td i.fa-times { color: var(--gray-400); }

/* --- LOGO --- */
.nav-logo img, .footer-brand img, .why-logo-big, .about-img-wrap img, .hero-logo-center img {
  background: transparent;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
section + section { /* smooth visual rhythm */ }

/* --- SMOOTH PAGE TRANSITIONS --- */
body { animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 580px;
  overflow: hidden;
  margin-top: 90px;
}

/* Each slide */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  z-index: 2;
}
.slide.exit {
  opacity: 0;
  transform: translateX(-60px);
  z-index: 1;
  pointer-events: none;
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 12, 50, 0.92) 0%,
    rgba(5, 12, 50, 0.85) 40%,
    rgba(5, 12, 50, 0.30) 65%,
    rgba(5, 12, 50, 0.0) 100%
  );
}

/* Slide content layout */
.slide-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Slide text */
.slide-text {
  display: flex; flex-direction: column; gap: 22px;
  background: rgba(4, 10, 45, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 44px 48px;
  border-left: 4px solid rgba(255,255,255,.3);
  max-width: 560px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.5);
  color: #ffffff;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  width: fit-content;
}

.slide-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #ffffff;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: none;
}
.slide-highlight {
  color: #7dd3fc;
  background: none;
  -webkit-text-fill-color: #7dd3fc;
}

.slide-text p {
  color: #e2eaff;
  font-size: 1.05rem; line-height: 1.75;
  font-weight: 400;
  text-shadow: none;
}

.hero-btns .btn-primary {
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  font-size: .97rem;
  padding: 13px 30px;
}
.hero-btns .btn-outline {
  border: 2px solid rgba(255,255,255,.8);
  color: #ffffff;
  font-size: .97rem;
  padding: 12px 28px;
  background: rgba(255,255,255,.1);
}
.hero-btns .btn-outline:hover { background: rgba(255,255,255,.22); }

/* Slide visual */
.slide-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 360px;
}

.slide-icon-wrap {
  width: 180px; height: 180px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(255,255,255,.1);
  animation: pulse 3s ease-in-out infinite;
}
.slide-icon-wrap i {
  font-size: 4rem;
  color: rgba(255,255,255,.9);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255,255,255,.1); }
  50%       { transform: scale(1.05); box-shadow: 0 0 70px rgba(255,255,255,.2); }
}

.slide-stat-card {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: float 3.5s ease-in-out infinite;
}
.slide-stat-card.s2 { animation-delay: 1s; }
.slide-stat-card i { font-size: 1.4rem; color: #93c5fd; }
.slide-stat-card strong { display: block; font-size: 1.1rem; font-weight: 800; }
.slide-stat-card span  { font-size: .78rem; color: rgba(255,255,255,.75); }

.slide-stat-card       { top: 40px;  right: 0; }
.slide-stat-card.s2    { bottom: 40px; left: 0; }

/* Slider controls */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff; font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 28px; }
.slider-btn.next { right: 28px; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.4);
  border: none; border-radius: 50%;
  cursor: pointer; transition: all .3s ease;
  padding: 0;
}
.dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* Progress bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.2);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: rgba(255,255,255,.8);
  width: 0%;
  transition: width linear;
}

/* Responsive slider */
@media (max-width: 1024px) {
  .slide-content { grid-template-columns: 1fr; gap: 0; padding: 0 32px; }
  .slide-visual { display: none; }
  .slide-text { text-align: center; align-items: center; }
  .slide-text p { max-width: 100%; }
  .hero-btns { justify-content: center; }
}
@media (max-width: 768px) {
  .hero-slider { height: calc(100vh - 90px); min-height: 520px; }
  .slide-content { padding: 0 20px; }
  .slider-btn { width: 40px; height: 40px; font-size: .85rem; }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }
}
